$(function() {
	
	// menu
	$('#menu li').hover(function() {
		$(this).children('ul').stop(true, true).slideDown(150);
	}, function() {
		$(this).children('ul').stop(true, true).slideUp(150);
	});
	
	// product page image
	if( $('.product #content .right .logo').height() != null ) {
		$('.product #content').css({
			'min-height': $('.product #content .right .product_image').height() + 104
		});
		$('.product #content .right .product_image').css({
			'margin-top': ($('.product #content .right').height() - $('.product #content .right .product_image').height() - 104) / 2
		});
	}
	else {
		$('.product #content').css({
			'min-height': $('.product #content .right .product_image').height()
		});
		$('.product #content .right .product_image').css({
			'margin-top': ($('.product #content .right').height() - $('.product #content .right .product_image').height()) / 2
		});
	}
	
});

