jQuery(document).ready(function () {
jQuery("#MainMenu ul li a").each(function() {
     var width = jQuery(this).width();
     if(jQuery(this).hasClass('active')){
    	 var position = jQuery(this).position();

    	jQuery('#strok').css("display", "block");
    	jQuery('#strok').css("width", width + "px");
    	jQuery('#strok').css("top", (position['top']+20) + "px");
    	jQuery('#strok').css("left", position['left'] + "px");
    	
     }
   });
   
    var height = jQuery('.field-name-field-page-image img').height();
	jQuery('#Content').css("min-height",height + "px");
	if(height){
		 jQuery('.field-name-field-menu-image img').hide();
	}else{
    var height2 = jQuery('.field-name-field-menu-image img').height();
	jQuery('#Content').css("min-height",height2 + "px");
	}
});
