$(document).ready(function() {
	
	$('a[href=#pagetop]').click(function(){
        $('html, body').animate({scrollTop:0}, 'medium');
        return false;
    });
    
    var delay = 4000;
    
    	if(jQuery.support.leadingWhitespace){
    	
    	$('ul.gallery li, ul.portfoliogallery li, .portfoliofeature img, .portfolioteaser img, ul#social li, input#submit').hover(
    	
    		function () {
				$(this).stop().fadeTo(delay/10,0.8);
			},
			function () {
				$(this).stop().fadeTo(delay/10,1);
			});
    	
    	} else {
    	
    	$('.portfoliofeature img, .portfolioteaser img, ul#social li, input#submit').hover(
    	
			function () {
				$(this).stop().fadeTo(delay/10,0.8);
			},
			function () {
				$(this).stop().fadeTo(delay/10,1);
			});
    	
    	}
    	
});
