// JavaScript Document

	$(document).ready(function() { 
	
	$('.over').delay(500).fadeOut(500);
	$('.over_home').delay(500).fadeOut(500);
		

	$("#logo img").hover(function(){
		$(this).fadeTo("fast", 0.6); // This should set the opacity to 60% on hover
	},function(){
   		$(this).fadeTo("fast", 1.0); // This should set the opacity back to 100% on mouseout
	});

		
		$("#navigation a, .contact a").hover(function() {
        $(this).animate({ color: "#232323" }, 300);
        },function() {
        $(this).animate({ color: "#666666" }, 400);
        });

	
	$(window).scroll(function() {
			
		});

		 $('#scroll a').click(function(){ 
			$('html, body').animate({scrollTop:0}, 'fast'); 
			return false; 
		});
		
		$("#selected-works img").click(function(){ 
			$.scrollTo(
				this, 
				800,
				{offset: {top: -25, left:0} }
				);
		});
		
	});
		

