// 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 + 10;
//      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');
//   });

            //dropdown_menus = $('.top-nav').children('.nav').children('.dropdown')

            $('.top-nav').children('.nav').mouseover(function()
            {
                offset_top = $(this).height() + $(this).position().top + 20;
                $(this).children('.dropdown').css({'top' : offset_top, 'left' : 0});
                $(this).children('.dropdown').css('display', 'block');
            });

            $('.top-nav').children('.nav').mouseleave(function()
            {
                $(this).children('.dropdown').css('display', 'none');
            });
            
        //Subpage menus
        $('.inner-nav a').hover(function(){
         $(this).clearQueue().animate({'margin-left':'20px'}, 'fast' );
         }, function(){
         $(this).clearQueue().animate({'margin-left':'0px'}, 'fast');	 
         });
         
        //Back to top
        $('.section').after('<div class="top">&#94; TOP </div>');
        //$('.product:first').css({'margin-top':'26px'});
        $('.top').live('click', function(){
        $('html, body').animate({scrollTop:0}, 1100);
                });
});



