Shadowbox.init({
    handleOversize: "none",
	troubleElements: {},
	modal: true
});

var PopUpHandler = {
	href : '',
	continueFn: function(){	window.open(this.href); Shadowbox.close(); }
}

$j(document).ready(function() {

	$j.fn.openShadowbox = function(content, h, w) {
	
		$j(this).click(function(e){
			e.preventDefault();
			
			PopUpHandler.href = $j(this).attr('href');
			
			Shadowbox.open({
				content:    content,
				player:     "html",
				height:     h,
				width:      w
			});
		
		});//ends click
	
	};//ends $j.fn.openShadowbox 
	
	var box1 = '<div id="intertetial"> <h1>leaving the LivingWithDryness.com website</h1><p>Please note: You are about to leave the LivingWithDryness.com website and go to the Daiichi Sankyo, Inc. corporate website.</p><div class="btnSection"><p><span id="btnContinue" onclick="PopUpHandler.continueFn()">continue</span></p><p><span id="btnCancel" onclick="Shadowbox.close()">cancel</span></p></div></div>';
	
	var box2 = '<div id="message"><h1>Why we ask for your year of birth</h1><p>Daiichi Sankyo, Inc. does not collect information from people aged 17 years and younger. In addition, the information that you provide to us may be shared in a "blinded" format with our business partners for purposes related to Daiichi Sankyo, Inc. market research and related business uses.</p><p><span id="close" onclick="Shadowbox.close()">close</span></p></div> ';
	
	var box3 ='<div id="external"><h1>leaving the LivingWithDryness.com website</h1><p>Please note: You are about to leave the LivingWithDryness.com website by opening a new web page. Daiichi Sankyo, Inc. does not control the content of the website connected to this link.</p><div class="btnSection"><p><span class="btnContinueExt" onclick="PopUpHandler.continueFn()">continue</span></p><p><span class="btnCancelExt" onclick="Shadowbox.close()">cancel</span></p></div></div>';
        
     var box4 ='<div id="promotional"><h1>leaving the LivingWithDryness.com website</h1><p>Please note: You are about to leave the LivingWithDryness.com website by opening a new web page. The following link is made available for promotional porpuses of a prescription treatment option and should not be used in place of visit, call, consultation or advice of your physician or ohter healthcare provider.</p><div class="btnSection"><p><span class="btnContinueExt" onclick="PopUpHandler.continueFn()">continue</span></p><p><span class="btnCancelExt" onclick="Shadowbox.close()">cancel</span></p></div></div>';
	
	$j('a.intersititialid').openShadowbox(box1,188,463);
	$j('img.braket').openShadowbox(box2,260,475);
	$j('a.externallink').openShadowbox(box3,188,463);
	$j('a.promotionallink').openShadowbox(box4,260,475);
	

});//ends dom ready
