$(document).ready(function(){
	
	$('div > input:first').click(function(){
			$('div > input:first').attr('value','');
		});
		
		
		
	
		
		
		
		
		
		
		
		
}); // END READY !!!

function tabsAnimated(){
	$('#left_home_button').hover(function(){
		$('#left_home_button').find('#left_home_subButton').stop().animate({
			marginTop: '0',
		}, 400);
	}, function(){
		$('#left_home_button').find('#left_home_subButton').stop().animate({
			marginTop: '451px',
		}, 400);
	});
	
	$('#center_home_button').hover(function(){
		$('#center_home_button').find('#center_home_subButton').stop().animate({
			marginTop: '0',
		}, 400);
	}, function(){
		$('#center_home_button').find('#center_home_subButton').stop().animate({
			marginTop: '451px',
		}, 400);
	});
	
	$('#right_home_button').hover(function(){
		$('#right_home_button').find('#right_home_subButton').stop().animate({
			marginTop: '0',
		}, 400);
	}, function(){
		$('#right_home_button').find('#right_home_subButton').stop().animate({
			marginTop: '451px',
		}, 400);
	});
} 

