/*=========================================================== Jquery Global Functions ===========================================================*/ /* Toggle Send to a friend link -----------------------------------------------------------*/ $(document).ready(function(){ $("fieldset#sendToFriend").hide(); $("li.email a").click(function(event){ $("fieldset#sendToFriend").animate({ height: 'toggle', opacity: 'toggle' }, "slow"); return false; }); }); /* Show alerts -----------------------------------------------------------*/ $(document).ready(function(){ $("div.alert").fadeIn(2500); }); /* Drop down menus -----------------------------------------------------------*/ $(document).ready(function(){ $("ul.nav").superfish(); });