jQuery(document).ready(function(){
	jQuery('.open-map > a').click(function(){
		if(jQuery(this).attr("class")=="active-map")
		{
			jQuery('#footer > .f-container').animate({
			opacity: 'hide',
			height: 'hide'
			}, 500, function() {
				jQuery(this).hide();
			});
			jQuery(this).attr("class","");
			jQuery('#footer').css("border-top","3px solid #C5C5C5");			
		}
		else
		{
			jQuery(this).attr("class","active-map");
			jQuery('#footer').css("border-top","3px solid #EC1D25");
			jQuery('#footer > .f-container').animate({
			opacity: 'show',
			height: 'show'
			}, 500, function() {
				jQuery(this).show();				
			});		
		}
	});
});

