$(function() {	$(".imgBut").live("mouseover",function() {		var button = $(this).attr("alt");		$(this).attr("src","images/"+button+"-button-on.jpg");	});	$(".imgBut").live("mouseout",function() {		var button = $(this).attr("alt");		$(this).attr("src","images/"+button+"-button.jpg");	});	$('#banners').cycle({		fx: 'scrollLeft', // choose your transition type, ex: fade, scrollUp, shuffle, etc...		timeout: 4000	});		$(".navi").menu();		$('#showfedoc').click(function() {		$("#fotoexposedoc").toggle('slow');	});		$("a").click(function() {		if($(this).attr('href').search(/http/g) == 0) {			window.open($(this).attr('href'),'other');			return false;		}		if($(this).attr('rel') == 'external') {			window.open($(this).attr('href'),'other');			return false;		}	});			if($('#contact').length) {			$('#contact').submit(function() {			$('<input type="hidden" name="ajax" value="true" />').appendTo(this);		 	$(".formInput").css('background-color','#fff'); 			$.post("send.php",$('#contact').serialize(), 			    function(data) {			    	if(data != "") {			    		$('#'+data).css('background-color','pink').focus();			    		return false;			    	}			    	else {			   			window.location = '?page=home';			   		}			   });			return false;		});		return false;	}	});
