 $(document).ready(function(){

	$("#toggle-info").css({'color' : '#d51b1d', 'font-weight' : 'bold'});
	$("#location").hide();
	
	$("#toggle-location").click(function(){
		$(this).css({'color' : '#d51b1d', 'font-weight' : 'bold'});
    	$("#toggle-info").css({'color' : '#4d4d4d', 'font-weight' : 'normal'});
    	
		$("#info").fadeOut('slow', function(){
			$("#info").hide( function(){
				$("#location").fadeIn('slow');
			});
		});
	});
	
	$("#toggle-info").click(function(){
		$(this).css({'color' : '#d51b1d', 'font-weight' : 'bold'});
    	$("#toggle-location").css({'color' : '#4d4d4d', 'font-weight' : 'normal'});
    	
		$("#location").fadeOut('slow', function(){
			$("#location").hide( function(){
				$("#info").fadeIn('slow');
			});
		});
	});
 	
  });
