$(document).ready(function() {
		
	// Some functions
		
	
	// Setting the Vars
	
	var bodyId = "item" + $("body").attr("id");
	
	$("ul.sub").find("li." + bodyId).addClass("selected");
	/*
	if($("ul.sub li").hasClass(bodyId)) {
		$(this).addClass("selected");
	};
	*/
	
	$('#menu ul#contact').css({'top' : ($(window).height()-110)});
		
  	// Work sample info
  	
  	$('#content .new ul li span').css({'opacity' : 0});
  	
  	$('#content .new ul li a').hover(
  		function() {
  			$(this).children('span').stop().animate({opacity : 0.8},600);
  		}, function() {
  			$(this).children('span').stop().animate({opacity : 0},600);
  	});
  	
  	// AJAXING
  	  	
	$("#content").css({'top' : $(window).height()/2-($("#content").height()/2)});
	
});
