﻿$(document).ready(function() {

    var sub_nav = $('#top_nav li.more');
    
    sub_nav.mouseover(function() {
        $(this).addClass('active');
      });
      
    sub_nav.mouseout(function() {
        $(this).removeClass('active');
    });
      
    $('.subnav:last-child').addClass('last');
    
      
    $('.rollover').each(function() {
        this.style.display = 'inline';
    });
    
    
    $('.popuplink').click(function() {
        var popupwin = $($(this).attr('href'));
        
        $('.popup').fadeOut(100);
        if(popupwin.is(':visible')) {
            popupwin.fadeOut(200);
        } else {
            popupwin.fadeIn(200);
        }
    });

    $('img.closebutton').click(function(){ 
        var holder = $(this).parents("div.popup:first");
        $(holder).fadeOut(200);
    });

    
});

