
$(document).ready(function(){
	$("#header2").cycle({fx:"fade",speed:2000});
	$("ul.menu li a").mouseenter(function(){
		$(this).css('opacity', '1');
	});
	$("ul.menu li a").mouseleave(function(){
		$(this).animate({opacity: 0.65}, 1000);
	});
	$("#gallery img").mouseenter(function(){
		$(this).css('opacity', '1');
	});
	$("#gallery img").mouseleave(function(){
		$(this).animate({opacity: 0.65}, 1000);
	});
});
