 $(document).ready( function(){
	$('#see-more').animate({opacity: 0}, 0);
	$('#banner').innerfade({
		speed: 1500,
		timeout: 6000,
		type: 'sequence',
		containerheight: '380px'
	});
	$('#top').hover( function(){
		$('#see-more').stop().animate({opacity: 1}, 'slow');
	},
	function(){
		$('#see-more').stop().animate({opacity: 0}, 'slow');
	});
        $("a.fancybox").fancybox();
        
        $("img").lazyload({effect : "fadeIn"});
        
        $("#inline").fancybox({'modal' : true });
});

 
