// JavaScript Document

jQuery(document).ready(function(){
	
	var animSpeed = 500;
	
	//$('#content').hide();
	
	//$("#content").fadeIn(1500);

	$(function() {
		$("#menu a,#submenu a,").hover(function() {
			$(this).stop().animate({
				
				paddingTop:		"12px",
				paddingBottom:	"1px",
				
				}, 				50 );
		},
		function() {
			$(this).stop().animate({
				
				paddingTop:		"3px",
				paddingBottom:	"1px",
				
				}, 				600 );
		});
		
	});

});
