jQuery(function($){
	$("#empod").click(function(){
		$(this).parents("#rask-podr").hide(100);
		$("body").find("#podr").css("display","inline-block");
	});


	$('.product_box').hover(function () {
		$(this).find('.name').attr('class', 'name hover');
	},
	function () {
		$(this).find('.name.hover').attr('class', 'name');
	});

});
