onhover open a popup but it close only when i click on rest of the page or close button
$('#promo').mouseover(function() {
$('#promoarrow').show();
});
$('#closebtn').click(function() {
$('#promoarrow').hide();
});
here is the fiddle :
http://jsfiddle.net/YFY5g/16/
Do you want this??