$(document).ready(function(){
	/* BIG BUTTON ANIMATION */
	$('a.bigbutton').mouseenter(function(){
		$(this).stop(true, false).animate({ backgroundColor: "#2D6695", marginLeft: "7px", marginRight: "0px" }, 200)
	})
	$('a.bigbutton').mouseleave(function(){
			$(this).stop(true, true).animate({ backgroundColor: "#1C405E", marginLeft: "0px", marginRight: "7px" }, 100, fix);
			function fix() {
				if ($('a.bigbutton').mouseleave) {
					$(this).animate({ backgroundColor: "#1C405E" }, "fast")
				}
			}
	})
	/* COPYRIGHTS OPACITY */
	$('#copyrights').mouseenter(function(){
		$(this).removeClass("op40").addClass("op70");
	})
	$('#copyrights').mouseleave(function(){
		$(this).removeClass("op70").addClass("op40");
	})
});

