// JavaScript Document
$(document).ready(function(){
						
$('a#footeropen').bind('click', function(evt){
	evt.preventDefault();
	$("#footer_sidemap").css('display', 'block');
	$("#footer_sidemap").animate({ height: '316px'}, function(){$("#footer_close").css('display', 'block');});
});


$('a#footerclose').bind('click', function(evt){
	evt.preventDefault();
	$("#footer_close").css('display', 'none');
	$("#footer_sidemap").css('display', 'none');
	$("#footer_sidemap").animate({ height: '1px'});
    });
						   


});
/*
$(document).ready(function(){
						
$('a#footeropen').bind('click', function(evt){
	evt.preventDefault();
	$('#footer_sidemap').css('display', 'block');
	$('#footer_close').css('display', 'block');
	$('#footer_open').css('display', 'none');
    $('#footer_sidemap').animate({
      height: 'show', opacity: 'show' })
	 $('#footer_close').animate({
      height: 'show', opacity: 'show' })
	  $('#footer_open').animate({
      height: 'hide', opacity: 'hide' })
    });


$('a#footerclose').bind('click', function(evt){
	evt.preventDefault();
    $('#footer_sidemap').animate({
      height: 'hide', opacity: 'hide' })
	 $('#footer_close').animate({
      height: 'hide', opacity: 'hide' })
	  $('#footer_open').animate({
      height: 'show', opacity: 'show' })
    });
						   


});*/
