
$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".offers").hide(); 
	$("#trigger").css({'cursor':'pointer'})
	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("#trigger").click(function(){
		$(".offers").slideDown("slow");
		return false; //Prevent the browser jump to the link anchor
		});

	// "Close" button
	$("#closePromo").click(function(){
		$(".offers").slideUp("slow");
		return false; //Prevent the browser jump to the link anchor
	});

});


function selectName()
{
    $("#first_name").focus();
    $("#first_name").select();
}

function selectEmail()
{
    $("#email").focus();
    $("#email").select();
}


