$(document).ready(function(){
		//$('#body').hide();
		$('.toValidate').validate();
		
		
		$("div.offimage").mouseover(function ()
  {
    $(this).addClass("onimage");
  });

  $("div.offimage").mouseout(function ()
  {
    $(this).removeClass("onimage");
  });
		
});



$(window).load(function(){
/*	//$('#body').show();
	var h = $('#content-wrapper').height();
    if (h < 500) {
		$('#content-wrapper').height(514);
    }
	
	var hl = $('#main-menu').height();
	var hc = $('#content-wrapper').height();
//	alert(hl);
//	alert(hc);
    if (hl < hc) {
		$('#main-menu').height(hc+15);
    }
    */
});