
		var headergallery=new fadeSlideShow({
			wrapperid: "headergallery",
			dimensions: [544, 129],
			imagearray: [
				["images/slideshow1.jpg"],
				["images/slideshow2.jpg"]
			],
			displaymode: {type:'auto', pause:3000, cycles:0, wraparound:false},
			persist: false,
			fadeduration: 1000,
			descreveal: "ondemand",
			togglerid: ""
		})

		var commentsgallery=new fadeSlideShow({
			wrapperid: "commentsgallery",
			dimensions: [242, 174],
			imagearray: [
				["images/comment_2.png"],
				["images/comment_3.png"],
				["images/comment_4.png"],
				["images/comment_5.png"],
				["images/comment_6.png"],
				["images/comment_8.png"],
				["images/comment_9.png"],
				["images/comment_10.png"],
				["images/comment_11.png"]
			],
			displaymode: {type:'auto', pause:1000, cycles:0, wraparound:false},
			persist: false,
			fadeduration: 1000,
			descreveal: "ondemand",
			togglerid: ""
		})
		
		//23456891011

		function over(elem)
		{
			elem.src = elem.src.replace("off.jpg", "on.jpg");
		}

		function out(elem)
		{
			elem.src = elem.src.replace("on.jpg", "off.jpg");
		}

		function show(nam)
		{
			document.getElementById(nam).style.display = "block";
		}

		function hide(nam)
		{
			document.getElementById(nam).style.display = "none";
		}

		function popup (url)
		{
			window.open(url, 'poppup', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=600,height=500,left = 312,top = 184');
			return false;
		}
