/*

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

		//$("#hoverup li").append("<span></span>");

		// Animate buttons, move reflection and fade

		$("#hoverup a").hover(function() {
		    $(this).stop().animate({ marginTop: "-8px" }, 50);
		},function(){
		    $(this).stop().animate({ marginTop: "0px" }, 300);
		});

                
	});

