$(function(){
	/* BIG BUTTON ANIMATION */
	$('a.bigbutton').mouseenter(function(){
		$(this).stop(true, false).animate({ backgroundColor: "#8ddc10", marginLeft: "7px", marginRight: "0px" }, 200)
	})
	$('a.bigbutton').mouseleave(function(){
			$(this).stop(true, true).animate({ backgroundColor: "#dcc610", marginLeft: "0px", marginRight: "7px" }, 100, fix);
			function fix() {
				if ($('a.bigbutton').mouseleave) {
					$(this).animate({ backgroundColor: "#dcc610" }, "fast")
				}
			}
	})
	/* MENU ROUNDED CORNERS */
	$('ul.dropdown ul li:first-child').addClass('li-first');
	$('ul.dropdown ul li:last-child').addClass('li-last');
	$('ul.dropdown ul ul li:first-child').addClass('li-first');
	$('ul.dropdown ul ul li:last-child').addClass('li-last');
	$('ul.dropdown ul').prev().addClass('a-level');
	$('ul.dropdown ul ul').prev().removeClass('a-level');
});

