
// COMMON: Load page in a new window; use class="new_window" on <a> tags
$(document).ready(function(){
	$("a.new_window").click(function(){
		w = window.open(this.href, 'new_window');
		return false;
	});
});

// Step 1: Select textbox
$(document).ready(function(){
	$("#postal_code").focus();
	$("#postal_code").select();
});

// Step 3: Redirect after 5 seconds
$(document).ready(function(){
	if ($("#step3").length){
		$.timer(5000, function(){
			var href = "http://www.ywcacanada.ca/public_eng/events/index.cfm"
							 + "?Heading1_link=rose_button_campaign"
							 + "&Heading2_link=rose_button_campaign"
							 + "&Heading3_link=rose_button_campaign"
							 + "&Heading4_link=rose_button_campaign&Hlinks=1";
			window.location = href;
		});
	}
});
