﻿jQuery(function() {







 




jQuery("#menu span ").mouseover( function(){ jQuery(this).addClass("menu_hover") } );
jQuery("#menu span ").mouseout( function(){ jQuery(this).removeClass("menu_hover") } );

jQuery(".news_images").mouseover( function(){ jQuery(this).addClass("news_images_h") } ); 
jQuery(".news_images").mouseout( function(){ jQuery(this).removeClass("news_images_h") } );

jQuery(".history_images").mouseover( function(){ jQuery(this).addClass("history_images_h") } ); 
jQuery(".history_images").mouseout( function(){ jQuery(this).removeClass("history_images_h") } );
 
jQuery(".grouped_images").mouseover( function(){ jQuery(this).addClass("grouped_images_h") } ); 
jQuery(".grouped_images").mouseout( function(){ jQuery(this).removeClass("grouped_images_h") } );
 
 
 });
 

