    
    $('#mediaList li a').children('img').each(function() {
    	// Hide the image
    	$(this).hide().stop();
    	
    	// Create the image resource
    	var $t  = $(this);
    	var img = new Image();
    	img.onload = function() {
    		$t.fadeIn();
    	}
    	
    	// Load the image
    	img.src = $(this).attr('src');
    });

    
    $('.homePic').cycle();

    $(document).ready(function(){ 
        $('.fancybox').fancybox({
        	titlePosition: 'over',
        	overlayColor: '#000',
        	overlayOpacity: 0.8,
        	padding: 5
        });
        
        $('#mediaList').jcarousel({});
        
        $('.mediaCellLink').click(function(e) {
        	e.preventDefault();
        	var src = $(this).attr('href');
        	$('.mediaCellImg').attr('src', src);
        });
    }); 
