/*

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

*/

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

	// Begin jQuery
	
	$(document).ready(function() {

	/* =Reflection Nav
	-------------------------------------------------------------------------- */	
		
		
		// Animate buttons, move reflection and fade
		
		$("#nav-reflection a").hover(function() {
		alert('sas');
		    $(this).stop().animate({ marginTop: "-10px" }, 200);
		},function(){
		    $(this).stop().animate({ marginTop: "0px" }, 300);
		});
				
	// End jQuery
	
	});