$(document).ready(function () {
	
	if ($('div#landingFlash').length > 0) {
		swfobject.embedSWF("/flash/edusafe.swf", "landingFlash", "700", "280", "10.0.0", "/flash/expressInstall.swf");
	}
	
	$('a.printLink').bind('click',function(e) {
		window.open(this.href,'print','width=775,height=630');
		return false;
	});
	
	$('a.emailPost').bind('click',function(e) {
		window.open(this.href,'email','width=700,height=475');
		return false;
	});
	
	$('form.eventRegistration div.terms').hide();
	$('form.eventRegistration div.paymentOptions input').focus(function(e) {
		$('form.eventRegistration div.terms').hide();
		switch($(e.target).val()) {
			case 'cc':
					$('form.eventRegistration div.creditCard').show();
				break;
			case 'po':
					$('form.eventRegistration div.purchaseOrder').show();
				break;
		}
	});
	
	$('a.viewEvent').click(function(e) {
		window.open($(e.target).href);
		return false;
	});
	
});