$(document).ready(function(){
		$("div.content-box ul").css("margin-top",(($(window).height())-400)/2);
		$(window).resize(function() {
			$("div.content-box ul").css("margin-top",(($(window).height())-400)/2);
		});
		
		if ( $.browser.msie ) {
			$("div.content-box ul").show();
			$("footer div").show();
		}else{
			$("div.content-box ul").fadeIn(1200);
			$("footer div").fadeIn(1500);
		}

		if ( $.browser.msie ) {
			$("li.download a").hover(function(){
				$("img",this).attr("src", "img/sapien-download-portfolio-hover.png");
			},function(){
				$("img",this).attr("src", "img/sapien-download-portfolio.png");
			});
		}
		else{
			$("li.download a").hover(function(){
				$("img",this).fadeTo("medium", .5);
			},function(){
				$("img",this).fadeTo("medium", 1.0);
			});
		}
});
