// JavaScript Document

$(document).ready(function(){
	
		
	
	$('#header li a').mouseenter(function(){
		$(this).stop().animate({fontSize:30, marginTop: "-7px"},100);
	});
	$('#header li a').mouseleave(function(){
		$(this).stop().animate({fontSize:20,marginTop: "0px"},100);
	});
	$('#header li.current_page_item a').mouseenter(function(){
		$(this).stop().animate({fontSize:20, marginTop: "0"},100);
	});
	$('#header li.current_page_item a').mouseleave(function(){
		$(this).stop().animate({fontSize:20,marginTop: "0px"},100);
	});
	

	$('#header li a').click(function(){
		$('#header li a').css({ color: "#000"});
		$(this).css({color:"#eee"});
	});
	
	
});
