$(document).ready(function() {		
	
	
	

	// mouse tip
	$(".product").hover(function(evt) {
		var el = $(this);
		var tip=el.find(".tip");
		tip.css({top:evt.pageY - 20, left:evt.pageX - 10}).show();	
		
	},
	function()
	{
		 $(this).find(".tip").hide();
	
	
	}
	);
	$("div.tip:visible").hover(
	function() {
	},
	function() {
	$(this).hide();
	}
	);	
	$(".close").click(function() {
		
        $(this).parents().filter('.tip').hide();
	return false;
	});
	
	
	// button.custom, span.play hover and mousedown
	

	
	
	
	
});



