$(document).ready(function(){

    	$('.slideshow').cycle({
			fx: 'fade'
		});
		
		
		$("#about,#gallery,#client,#home,#blog,#wall").hover(function() {
	  		$(this).animate({opacity: 0.8},"fast");
		}, 
		function() {
	  		$(this).animate({opacity: 1},"fast");
		});
		
		$("#about,#gallery,#client,#home,#blog,#wall").click(function(){
	  		window.location=$(this).find("a").attr("href"); return false;
		});
			
	});