﻿ $(document).ready(function() {
 
   // This is for the ORANGE navigation bar 
   $('#navigationDash > li').bind('mouseover', navigationDash_open)
   $('#navigationDash > li').bind('mouseout',  navigationDash_timer)
   
   // This sets the "hover" attribute in all images that have the class "rollover"
   $(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
        });
   });
   
    
});

