$(document).ready(function() {
	
	if ($.browser.msie) {
		$("#truck").css({'right' : '129px'});
		$("#enterSite").css({'display' : 'block'});
	}else {
		$("#enterSite").fadeIn(1500);
		$("#truck").css({'right' : '129px'}); 
		/*
$("#enterSite").fadeIn(1500, function () {
			$("#truck").animate({
				opacity: 1.0,
				right: "129px"
			}, 2000 ); 
		});
*/
	}
});  
