$(document).ready(function(){ //alert('document ready.'+baseurl);

	//preload images --------
	function preload(arrayOfImages) {
		$(arrayOfImages).each(function(){
			(new Image()).src = this; //$('<img/>')[0].src = this;
		});
	}
	preload(['_images/beaconBig_on.png',
			 '_images/southbostonBig_on.png'
	]);

	//image rollovers --------
	$(".imglink img").hover(
		function() { this.src = this.src.replace("_off","_on"); },
		function() { this.src = this.src.replace("_on","_off"); }
	);	

	$(window).load( function(){ //alert('window ready.');
		
		$("#links").fadeIn(400);
		$("#choices").delay(2000).fadeIn(600);

	});
	
});

     

