// JavaScript Document
$(document).ready(function() {
	$(".TopBasket > input").bind("mouseover",function() {
		$(this).addClass("Hover");
	});
	$(".TopBasket > input").bind("mouseout",function() {
		$(this).removeClass("Hover");
	});
	
	//fix midle name product
	var maxHeight = 0;
	$(".TopSub > ul > li > h3").each(function() {
		if (maxHeight < parseInt($(this).outerHeight())) {
			maxHeight = parseInt($(this).outerHeight());
		}
	});
	$(".TopSub > ul > li > h3").each(function() {
		if (parseInt($(this).outerHeight()) < maxHeight ) {
			var subValue = maxHeight - parseInt($(this).outerHeight());
			$(this).css("padding-top", (maxHeight - subValue)/2 + "px");
			$(this).css("padding-bottom", (maxHeight - subValue)/2 + "px");
		}
	});
});
