
//do when the document is ready
$(document).ready(function() {
    		    		
  
  	//ie6 warning script
	var options = {
	  enableClosing: true,
	  enableQuitBuggingMe: true,
	  overlayColor: "#000000",  
	  lightboxColor: "#ffffff",
	  borderColor: "#6699ff",
	  overrideLightbox: false,
	  lightboxHTML: null,
	  showToAllBrowsers: false
	};

	var callback = function() {
	  // Switch IE-specific content
	  // AJAX call to map IP to 'IE6 user' status
	  // etc.
	}
	sevenUp.plugin.black.test( options, callback );
	
	
	$('div.expander').hide();
	
	//expander code
    $('h2.expander').click(function(){
    	$(this).next().toggle('fast');
   	}); // END Expander code


	
	
  
}); //END do when the document is ready


//do when the document is ready
$(document).ready(function() {
    		
    var mouseX = 0;
	var mouseY = 0;    		
   
    $("span#voucherText").hide();
    
    $('div#giftVoucherInfo').hover(function(e){
    	
    	 $("span#voucherText").show();
   	},function(){
   		$("span#voucherText").hide();
   	}); 
   	
   	$('div#giftVoucherInfo').mousemove(function(e){
   		mouseX = e.clientX; 
   		mouseY = e.clientY;
    	//console.log('lalal' + mouseX + ' - ' + mouseY);
    	$("span#voucherText").css('left',mouseX+10);
    	$("span#voucherText").css('top',mouseY+10);
    	
    	
   	});
   	

}); //END do when the document is ready


//do when the document is ready
$(document).ready(function() {
    		
    var mouseX = 0;
	var mouseY = 0;    		
   
    $("span#referralText").hide();
    
    $('div#referralInfo').hover(function(e){
    	
    	 $("span#referralText").show();
   	},function(){
   		$("span#referralText").hide();
   	}); 
   	
   	$('div#referralInfo').mousemove(function(e){
   		mouseX = e.clientX; 
   		mouseY = e.clientY;
    	//console.log('lalal' + mouseX + ' - ' + mouseY);
    	$("span#referralText").css('left',mouseX+10);
    	$("span#referralText").css('top',mouseY+10);
    	
    	
   	});
   	

}); //END do when the document is ready




