// JavaScript Document

$(document).ready(function()
{
   $('.dropdown .nav').live('mouseover',function()
   {
      parent_elem = $(this).parents('.dropdown');
      //offset_right = parent_elem.width() - 35;
      offset_top = $(this).height() + $(this).position().top + 1;
      using_menu = $(this).parents('.dropdown').children('.menu');
      using_menu.css({'top':offset_top,'left':0});
      using_menu.fadeIn('fast');
   });
   
   $('.dropdown').live('mouseleave',function()
   {
      $(this).children('.menu').fadeOut('fast');
   });

        //Subpage menus
        $('.inner-nav a').hover(function(){
         $(this).clearQueue().animate({'margin-left':'20px'}, 'fast' );
         }, function(){
         $(this).clearQueue().animate({'margin-left':'0px'}, 'fast');	 
         });

});



