/*
	MS AWARENESS CSS	
	USES JQUERY
	CREATED: 01.02.11
	MODIFIED: 06.05.11
	AUTHOR: Andy Field
*/

$(document).ready(function(){

	$(".lightbox").lightbox({
		fitToScreen: true,
		imageClickClose: true
	});

	$(".tweet").tweet({
		join_text: "auto",
		username: "mstrust",
		count: 1,
		auto_join_text_default: "we tweeted", 
		auto_join_text_ed: "we",
		auto_join_text_ing: "we were",
		auto_join_text_reply: "we replied",
		auto_join_text_url: "we were checking out",
		loading_text: "loading tweets..."
	});


	$.fn.setAllToMaxHeight = function(){
		return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
	}
	
	$("#calendar li,p.caption").setAllToMaxHeight();
	
	$(".magic").cycle({
		height:"auto",
		timeout:4000,
		speed:2000
	});

});
