$(document).ready(function() {
	
	$('#support_link').attr('href', $('#online_support a').attr('href'))

	$('#country option:selected').each(function () {		
		if($(this).text() == "United States")
		{				
	      	$('.state').show();
	    }	    
	    else
	    {	        
	       	$('.state').hide();
	    }
	});
	
	$('#cardType option:selected').each(function () {		
		if(($(this).text() == "Maestro") || ($(this).text() == "Solo"))
		{				
	       	$('.issuered').show();
	    }
	    else
	    {	        
	      	$('.issuered').hide();
	    }
	});
	
	$('#cardType').change(function () {	
		$('#cardType option:selected').each(function () {		
			if(($(this).text() == "Maestro") || ($(this).text() == "Solo"))
			{				
	         	$('.issuered').show();
	        }
	        else
	        {	        
	        	$('.issuered').hide();
	        }
	     });
	});
	
	
	$('#country').change(function () {	
		$('#country option:selected').each(function () {		
			if($(this).text() == "United States")
			{				
	         	$('.state').show();
	        }
	        else
	        {	        
	        	$('.state').hide();
	        }
	     });
	});
	
	$(".help-button2 a").hover(
        function() {
            $(this).next("em").stop(true, true).animate({opacity: "show"}, "slow");
        },
        function() {
            $(this).next("em").animate({opacity: "hide"}, "fast");
        }
    );
	    
});