$(window).load(function(){

// don't bother doing anything sexy for IE because its just shite.
// just show all the elements.
if (jQuery.browser.msie) {
	
	$('#navHills').show();
	$('#backCity').show();
	$('#vid_thumb').show();
//	loadInitial();
}
else

// animations for other proper browsers.

//loadInitial();
$('#vid_thumb').fadeIn(1000);
$('#navHills').fadeIn(2500, 
	function(){
	$('#backCity').fadeIn(3000);
	
	});

});

var fadeInPos = -20;
var fadeOutPos = -50;
var origPos = 0;


//function loadInitial(){
//var rand = (Math.floor(Math.random()*9999));
//	$('#card0-beak').load('/frontCardsAjax/?scale=0.6&r='+rand, function(){
//		load1();
//		$('.beakImage').load(function(){
//		
//			$('#card0-beak').animate({opacity: "show", top: fadeInPos}, "medium", function(){ 
//				$('#card0-beak').oneTime(3000, "#card0-beak-hide", function(){
//					$('#card0-beak').animate({opacity: "hide", top: fadeOutPos}, "fast", function(){
//					 $('#card0-beak').animate({top: origPos});
//					});
//				});
//			});
//		
//		});
//	});
//}