/*

Main Javascript for jQuery Realistic Hover Effect
Created by Adrian Pelletier
http://www.adrianpelletier.com

*/

/* =Realistic Navigation
============================================================================== */

	// Begin jQuery
	
	$(document).ready(function() {
	
		$("#nav-shadow li").hover(function() {
			var e = this;
		    $(e).find("a").stop().animate({ height: "130%",width: "130%" }, 250, function() {
		    	$(e).find("a").animate({ height: "120%",width: "120%" }, 250);
		    });
		},function(){
			var e = this;
		    $(e).find("a").stop().animate({ height: "95%",width: "95%" }, 250, function() {
		    	$(e).find("a").animate({ height: "100%",width: "100%" }, 250);
		    });
		});
						
	// End jQuery
	
	});
