// JavaScript Document

$(document) .ready(function() {

// Hides the container and also makes the class hidden not apply (seamless loading)
$('#termsRed').hide();
$('#termsRed').removeClass('hidden');

// Fade In When Link is clicked
$('#redcardlink').click(function() {
	$('#termsRed').fadeIn();
	 return false; 
});

// Close
$('#close').click(function() {
	$('#termsRed').fadeOut();
	 return false; 
});



});
