//нихренаська



$(document).ready(function() { 
$("ul#top_menu > li").hover(
function(){$(this).addClass("openm");
var wu= $("ul",this).width(); 
//alert(wu);
wu = -wu / 2;
//alert(wu);
$("ul", this).css("marginLeft", wu);},
	 
function(){$(this).removeClass("openm");});
});


/*
$(document).ready(function() {
$("div.cat-one-stuff").each(function() 
{
zzz = $(this).find("> a").height();
pad_top = ($(this).height() - zzz) / 2;
fin_height = $(this).height() - pad_top;
$(this).css("padding-top", pad_top);
$(this).css("height", fin_height); 
}); 
}); 



*/
