$(function(){
	$(".LeftMenuItem").hover(
	  function () {
		 $(this).removeClass("LeftMenuItem").addClass("LeftMenuItem2");
      }, 
      function () {
        $(this).removeClass("LeftMenuItem2").addClass("LeftMenuItem");
      })
	  
	  
	  if(!$.browser.msie){
	  	$(".siteBG").height(580);
		$(".pageContant").height(463);
		$(".LeftBottom").height(335).css({
				background:"url(images/LeftBottom.jpg) bottom left"
		});
	  }

})

