
// cool
// $(function () {
// $('#thumbnails').hide()
// });

// cool
// $(function () {
// $('#thumbnails').hide();
// $('#thumbnails').fadeIn(3000);
// });

// cool
// 	$(document).ready(function(){
// 	$('#thumbnails , .sub , #imageContainer').hide();
// 	$('#thumbnails , .sub , #imageContainer').fadeIn(2000);
// 	});

// cool fade out
// $(function () {
// $('#cover').hide();
// $('#cover').fadeIn(3000);
// });

// cool
// $(function () {
// $('#imageContainer').hide()
// });

// cool
// $(function () {
// $('#imageContainer').hide();
// setTimeout('$("#imageContainer").fadeTo("slow",1)', 3000); 
// });

// cool - fades in all 3 elements
$(function () {
$('#imageContainer').hide();
setTimeout('$("#imageContainer").fadeTo("slow",1)', 3000); 
$('#thumbnails').hide();
setTimeout('$("#thumbnails").fadeTo("slow",1)', 2000);
$('#set_1').hide();
setTimeout('$("#set_1").fadeTo("slow",1)', 3000);
setTimeout('$("#spinner").fadeTo("normal",0)', 3000);
});









	
