//SETTING UP OUR POPUP  
//0 means disabled; 1 means enabled;  
var popupStatus = 0;  
//loading popup with jQuery magic!  
function loadPopup(divId){  
//loads popup only if it is disabled  
if(popupStatus==0){  
$("#backgroundPopup").css({  
"opacity": "0.7"
});  
$("#backgroundPopup").fadeIn("slow");  
$(divId).fadeIn("slow");  
popupStatus = 1;  
}  
}  

//disabling popup with jQuery magic!  
function disablePopup(divId){  
//disables popup only if it is enabled  
if(popupStatus==1){  
$("#backgroundPopup").fadeOut("slow");  
$(divId).fadeOut("slow");  
popupStatus = 0;  
}  
}  

//centering popup  
function centerPopup(divId){  
//request data for centering  
var windowWidth = document.documentElement.clientWidth;  
var windowHeight = document.documentElement.clientHeight;  
var popupHeight = $(divId).height();  
var popupWidth = $(divId).width();  
//centering  
$(divId).css({  
"position": "absolute",  
"top": windowHeight/2-popupHeight/2,  
"left": windowWidth/2-popupWidth/2  
});  
//only need force for IE6  

$("#backgroundPopup").css({  
"width": windowWidth,
"height": windowHeight  
});  
  
}  


$(document).ready(function(){  
    //following code will be here 
    //LOADING POPUP  
    //Click the button event!  
    $("#dontremember").click(function(){  centerPopup("#dontrememberPopup");  loadPopup("#dontrememberPopup");  });  
    $("#makesyoufeel").click(function(){  centerPopup("#makesyoufeelPopup");  loadPopup("#makesyoufeelPopup");  });  
    $("#fantasticplace").click(function(){  centerPopup("#fantasticplacePopup");  loadPopup("#fantasticplacePopup");  });  
    $("#firsttime").click(function(){  centerPopup("#firsttimePopup");  loadPopup("#firsttimePopup");  });  
    
    
    
    //CLOSING POPUP  
    //Click the x events
    $("#dontrememberPopupClose").click(function(){  disablePopup("#dontrememberPopup");  });
    $("#makesyoufeelPopupClose").click(function(){  disablePopup("#makesyoufeelPopup");  });
    $("#fantasticplacePopupClose").click(function(){  disablePopup("#fantasticplacePopup");  });
    $("#firsttimePopupClose").click(function(){  disablePopup("#firsttimePopup");  });
    

    $("#backgroundPopup").click(function()
    {  
        disablePopup("#dontrememberPopup"); 
        disablePopup("#makesyoufeelPopup");
        disablePopup("#fantasticplacePopup");
        disablePopup("#firsttimePopup");
    });  

    
    //Press Escape event!  doesn't seem to be working
    $(document).keypress(function(e){  
    if(e.keyCode==27 && popupStatus==1)
    {  
      disablePopup("#dontrememberPopup");  
      disablePopup("#makesyoufeelPopup");
      disablePopup("#fantasticplacePopup");
      disablePopup("#firsttimePopup");  
    }  
    });  

 
});  

