	

$(document).ready(function() {

	hoverProductHowToBuy();

});

function hoverProductHowToBuy() {

	$("a[rel='product_how_to_buy_button']").mouseover(function() {
		$('div.product_how_to_buy_box').show('slow');
	});

	$(".close_product_how_to_buy_box").click(function() {
	
		$('div.product_how_to_buy_box').hide('slow');
		return false;
	});
}
