
	Cufon.replace('h1');
	Cufon.replace('h2');
	Cufon.replace('h3');
	Cufon.replace('h4');

$(window).load(function() {
        $('#slider').nivoSlider({pauseTime:4500}
		);
});

$(document).ready(function(){
$('.enlarge').css({ opacity: 0 });
$('.enlarge').css({ cursor: 'pointer' });
$('.enlarge').hover(function(){
    $(this).stop().animate({ opacity: 1 }, 500);
    
}, function(){
   $(this).stop().animate({ opacity: 0 }, 300);
 
});
});

$(document).ready(function(){
	$('.social-links li a img').hover(function(){
		$(this).stop().animate({ marginTop: "-5px"}, 300);
		
	}, function(){
	   $(this).stop().animate({ marginTop: "0px" }, 300);
	 
	});
});

$(document).ready(function(){
	$('.box-body ul li a ').hover(function(){
		$(this).stop().animate({marginLeft: "30px" }, 300);
		
	}, function(){
	   $(this).stop().animate({marginLeft: "15px" }, 300);
	 
	});
});

$(document).ready(function(){
	$('.footer-navigation li a').hover(function(){
		$(this).stop().animate({marginLeft: "15px" }, 300);
		
	}, function(){
	   $(this).stop().animate({marginLeft: "0px" }, 300);
	 
	});
});

