// JavaScript Document


//Footer Scripts 
var t;
$(document).ready(function() {
	showMoreFooter();
	 t=setTimeout("hideMoreFooter()",10000);
});


function showMoreFooter(){
	$('#footer_outer1').animate({opacity:1, marginBottom: "-35px"}, 2000 );	
	$('.openmore').css({display:"none"} );
	$('.closemore').css({display:"block", opacity:0});
	$('.closemore').animate({opacity:1}, 2000 );
}
function hideMoreFooter(){
	clearTimeout(t);
	$('#footer_outer1').animate({opacity:0, marginBottom: "-190px"}, 2000 );	
	$('.closemore').css({display:"none"});
	$('.openmore').css({display:"block", opacity:0});
	$('.openmore').animate({opacity:1}, 2000 );
	

}
