
$(document).ready(function(){
	
	$('.catNav a').mouseover(function(){		
		$('div.whiteBox').hide();	
		$('div.markFlash').hide();
		var id = $(this).attr('rel');		
		//$(this).addClass('on');
		$('.whiteBox[rel='+id+']').show();	
		$('.markFlash[rel='+id+']').show();	
	});
	
	$('.catNav a').mouseout(function(){		
		$('div.whiteBox').hide();	
		$('div.markFlash').hide();
	});
		
});
	

 
