//$.getScript('jquery.color.js', function() {});




$(document).ready(function () {


$("#top li").hover(
function(){
		if($(this).hasClass('current'))
					{ $("#bottom li a").addClass('over');}
		else
					{ $("#bottom li a").removeClass('over');}
					},
		function(){ 
		$("#bottom li a").removeClass('over');
		}
	);


 













//set background image of bottom links to over image

	$("#bottom li.current a").each (function() {      
           lwsrc1 = $(this).css("background-image");  
          lwnew=lwsrc1.split('\/images'); 
          // alert(lwnew[0]);    
           lwnew2=lwnew[0]+'\/images/over'+lwnew[1];
          // alert(lwnew2);     
 		  $(this).css("background-image",lwnew2 );   
		
        });











});



















