// JavaScript Document
$(document).ready( function() {
	// center align tiles element
	(function(){
		var tileHolderWidth = $("#footertiles").width();
		$("#footertiles").css('left', Math.floor((980 - tileHolderWidth) / 2));
		
	})();	
	
	$('#streetcarClose').click( function() {
		$('#streetcarmessage').animate({
			top: '-227px'
		}, 1000);
		
		startFlash();
		
		return false;
	});
	
	$('.imgbox_white:not(#welcome-cont .imgbox_white, #c1 .imgbox_white)').css("min-height","246px");
	
});







