$(document).ready(function () {		// flash messages	setTimeout(function() {		$(".flash").fadeOut("slow", function () {		$(".flash").slideUp('slow');	}); }, 3000);		// table column stripes	$('.stripe_alt tr:even').addClass('alt');			// contact form load	$.get("/events/calendar/", function(response) {		$("#eventcal .data").html(response).fadeIn("normal");		$("#eventcal .loading").height($("#eventcal .data").height());		$("#eventcal .data strong").parent().parent().addClass("today");	});			// contact form submit	$("#eventcal th a").live("click", function() {		$.ajax({			type: "GET", 			url: $(this).attr('href'),			beforeSend: function(){				$("#eventcal .data").hide();				$("#eventcal .loading").show();			},			complete: function(){				$("#eventcal .loading").hide();			},			success: function(html){				$("#eventcal .data").html(html).fadeIn("normal");				$("#eventcal .loading").height($("#eventcal .data").height());				$("#eventcal .data strong").parent().parent().addClass("today");		 	}		});		return false;		});		// login form	$(".loginlink").attr("href", $(".loginlink").attr('href') + "modal").colorbox({		width:375,		scrolling:false,		opacity:.75	}, function(){		$("#login #email input").focus();	});	// login submit	$(".modalcontent #loginbttn").live("click", function() {		$.ajax({			type: "POST", 			url: "/account/login/modal",			data: $("#login fieldset form").serialize(),			beforeSend: function(){ // on send actions				$("#login .loading").height($("#login fieldset").height());				$("#login fieldset").fadeOut("fast");								$("#login .loading").fadeIn("fast");			},			complete: function(){ // on complete actions				$.fn.colorbox.resize();			},			success: function(html){ // success store returned data in html				$("#cboxLoadedContent").html(html);				$.fn.colorbox.resize();		 	}		 });		});	});
