var popupLock = false;
var popoffLock = true;

$(document).ready(function(){

	$('#popupMsg').jqm();
	$('.item').mouseover(showPopup);
	$('.item').mouseout(hidePopup);
	
	$('.item').css({
		position: "relative"
	})
	$('.tooltip').mouseover(function(e){
		if(!popoffLock){
			popupLock = true;
			setTimeout("unLockPopup()",50);
		}
	});

});

var showPopup = function (){
  if(!popupLock){
	$('.tooltip').appendTo(this);
	
      
	$('.tooltip .product').html( $(this).find('.name').html() );
	$('.tooltip .designer').html( 'by ' +
	$(this).find('.designer').html() );
	$('.tooltip p').html( $(this).find('.description').html() );
	$('.tooltip').css({
		  position: "absolute",
	          top: 15-$('.tooltip').height(),
	          left: -110,
	          display: 'block' 
      })
	$('.tooltip').show();
	popoffLock = true;
	setTimeout("unLockPopoff()",50);
   }

}

var hidePopup = function(){
	$('.tooltip').hide();
}

var unLockPopup= function(){
	popupLock = false;
}

var unLockPopoff= function(){
	popoffLock = false;
}

var popupMsg = function(header,txt, top){
	$('.jqmWindow').css('top', top+'%');
	$('#popupHeader').html(header);
	$('#popupText').html(txt);
	
	$('#popupMsg').jqmShow();
	if(typeof sIFR == "function"){
		sIFR.replaceElement(named({sSelector:"h1.sifr", sFlashSrc:"http://cdn.shoplesnouvelles.com/solo2/flash/jellyka-estrya.swf", sColor:"#E64097", sWmode: "transparent", sFlashVars:"offsetLeft=15"}));
	};

}

var popupMsgClose = function(){
	$('#popupMsg').jqmHide();
}