	function reveal(elem){document.getElementById(elem).className = ''}

	function hide(elem){document.getElementById(elem).className = 'hidden'}

	function more(myPage, windowName, myWidth, myHeight, resize, scroll){
		LeftPosition= (screen.width*0.5)-(myWidth*0.5);
		TopPosition= (screen.height*0.4)-(myHeight*0.5);
		window.open(myPage, windowName, 'width='+myWidth+', height='+myHeight+', top='+TopPosition+', left='+LeftPosition+', scrollbars='+scroll+', location=no, directories=no, status=no, menubar=no, toolbar=no, resizable=' + resize);
		return false;
	}


	$(document).ready(function(){

		fadeSetup("#frontfade LI", 9000);
		fadeSetup("#sidefade P", 9000);

		$(".page-item-15 A").click(function() {
			this.blur();
			$("#myslider").slideToggle(250);
			return false;
		});

		$("#s").val('Search');
		$("#s").focus(function() {
			if ($(this).val()=='Search') { $(this).val(''); }
		});
		$("#s").blur(function() {
			if ($(this).val()=='') { $(this).val('Search'); }
		});

	});