$(window).bind("load", function() { 
    	$("div#templates").slideView();
}); 

$(document).ready(function () {
    $('#layoutB div.map-menu a').click(function(){
		$('#layoutB a.green').each(function(){
			$(this).removeClass('green');
			$(this).addClass('grey');
		});
		$(this).focus(function(){$(this).blur();});
    	$(this).removeClass('grey');
    	$(this).addClass('green');
    	var map = $(this).attr('id');
    	$('#map').fadeOut('slow', function(){
			$(this).removeClass();
			$(this).addClass(map);
			$(this).fadeIn('slow');
    	});
	});
    $('#layoutB div.map-menu a').focus(function(){$(this).blur();});
});