/*

Main Javascript for jQuery Hover Effect
Created by Krzysiek Langer
http://www.motionwebdesign.pl

*/

// Begin jQuery
	
	$(document).ready(function() {

		$("#main-nav li a").hover(function() {
		    $(this).stop().animate({ marginTop: "+5px" }, 200);
		    $(this).css("color","#f4e89c");
		},function(){
		    $(this).stop().animate({ marginTop: "0px" }, 200);
		    $(this).css("color","#d3a44a");
		});
	});						
