jQuery.noConflict();
jQuery(document).ready(function(){

jQuery("#left_center_block tr:contains('Продукция')").css("display", "none");


/*
jQuery(document).bind("contextmenu",function(e){
    return false;
  });
  */
  function myResize () {
var h = jQuery("div#center_block").height();
jQuery("div#left_center_block").height(h);
}
jQuery(window).load(function () {
myResize ();
});
jQuery(window).resize(function(){
myResize ();
});
jQuery("div.fathrprod div.rprod:last").css("margin", "3px 0px 0 0px");
jQuery("div#vmMainPage div.vmcategoryblock:odd").css("margin", "0px 0px 5px 0px");
jQuery("span.raschet").toggle(function(){
jQuery("div.addtocart:hidden").show('slow');
},function(){
jQuery("div.addtocart").hide('slow');
});

	jQuery.fn.equalHeights = function(minHeight, maxHeight) {
		tallest = (minHeight) ? minHeight : 0;
		this.each(function() {
			if(jQuery(this).height() > tallest) {
				tallest = jQuery(this).height();
			}
		});
		if((maxHeight) && tallest > maxHeight) tallest = maxHeight;
		return this.each(function() {
			jQuery(this).height(tallest).css("overflow","auto");
		});
	}

});
