$(function() {
	$("li.trans-menu").hover(
		function() {
			if (!$(this).hasClass("product-menu")) {
				$(this).find("ul").css("left",-($(this).find("ul").width()-$(this).width())/2);
			}
			$(this).find("ul").show();
		},
		function() {
			$(this).find("ul").hide();
		}
	);	   
});