$(document).ready(function(){
	
	$("a").click(function(){
		$(this).blur();
	});
	
	$('.slideshow').cycle({
		fx: 'scrollLeft',
		speed: 1000,
		timeout: 10000
	});
	
	$('#nav').animate({opacity: "0.5"}, 0);
	
	$('#nav').mouseover(function(){
		$(this).stop(true, false).animate({opacity: "1.0"}, 300);
	});
	
	$('#nav').mouseout(function(){
		$(this).stop(true, false).animate({opacity: "0.5"}, 300);
	});
	
	
});