$(document).ready(function(){
if(jQuery.browser.version < 7 && jQuery.browser.msie){
		    //alert("in ie6");
		    $("#content-subpage").css("margin-top","-16px");
		    //$("#header_subnav").css("margin-top","-16px");
		}
	$("#header_headeroffer_image").mouseover(function(){
		$(this).css('height','152px').css('z-index','7000').addClass('couponOn');
		if(jQuery.browser.version < 7 && jQuery.browser.msie){
		    $("#content-subpage").css("margin-top","-50px");
		    $("#header_subnav").css("margin-top","-68px");		    
		    $(".nonav").css("margin-top","-69px");		    
		}
	}).mouseout(function(){
		$(this).css('height','84px').removeClass('couponOn');
		if(jQuery.browser.version < 7 && jQuery.browser.msie){
		    //alert("in ie6");
		    $("#header_subnav").css("margin-top","0px");
		    $("#content-subpage").css("margin-top","-16px");
		}
		});	
	
	$("#header_headeroffer_image > input").click(function(event){
			event.stopPropagation();
	   });
});

function SelectCoupon(){
var current_url = window.location.href;
	if ($("#massResident").attr("checked"))	
		window.open(window.location.href.replace(current_url, "special-offer-for-mass-residents.aspx"));
	else
		window.open(window.location.href.replace(current_url, "vyvanse-coupon.aspx"));
}