﻿// Custom sliding navigation: Jon Sinclair, December 27, 2008
// Feel free to use this as needed, please leave the credit 
// if don't change the code, or just change the variables.
$(document).ready(function(){$("#nav").find("ul li").hover(function(){$("ul",this).slideToggle(100);},function(){$("ul",this).slideToggle(100);});});
