$(function(){
	$('div#footerbox').css('display', 'none');
	$('div#footertop').css('display', 'none');
	
	$('div#footertop_open').click(function(){
		$('div#footertop_open').css('display', 'none');
		$('div#footertop').css('display', 'block');
		var d = {height:'toggle', opacity:'toggle'};
		$('div#footerbox').toggleClass('selected');
		$('div#footerbox').animate(d);
	}).mouseover(function(){
		$(this).addClass('ov');
	}).mouseout(function(){
		$(this).removeClass('ov');
	});
		
	$('div#footertop').click(function(){
		$('div#footertop').css('display', 'none');
		$('div#footertop_open').css('display', 'block');
		var d = {height:'toggle', opacity:'toggle'};
		$('div#footerbox').toggleClass('selected');
		$('div#footerbox').animate(d);
	}).mouseover(function(){
		$(this).addClass('ov');
	}).mouseout(function(){
		$(this).removeClass('ov');
	});
	
		
});


