/*

Main Javascript for jQuery Realistic Hover Effect
Created by Adrian Pelletier
http://www.adrianpelletier.com

*/

/* =Realistic Navigation
============================================================================== */

	// Begin jQuery
	
	$(document).ready(function() {

	/* =Reflection Nav
	-------------------------------------------------------------------------- */	
		
		// Append span to each LI to add reflection
		
		$("#nav-main li").append("<span></span>");	
		
		// Animate buttons, move reflection and fade
		
		$("#nav-main a").hover(function() {
		    $(this).stop().animate({ marginTop: "0px" }, 200);
		    $(this).parent().find("span").stop().animate({ marginTop: "10px", opacity: 1 }, 200);
			$(this).parent.parent.find("second-level-nav").stop().animation({opacity:0});
		},function(){
		    $(this).stop().animate({ marginTop: "0px" }, 300);
		    $(this).parent().find("span").stop().animate({ marginTop: "0px", opacity: 0 }, 300);
			$(this).parent.parent.find("second-level-nav").stop().animation({opacity:1});
		});
				
						
	// End jQuery
	
	});
