//controls tab hovers
		
	$(document).ready(function(){
		
		//what divs do you want to show?
		var boxDesc = ["#kw-desc-one","#kw-desc-two","#kw-desc-three"];
		
		$('.keyword').hover(function(){
			
			var descriptionVal = $(this).attr('name');
			
			for( var i=0; i<=boxDesc.length; i++){
				
				if(i == descriptionVal){
					$(boxDesc[i]).fadeIn('slow');	
				}//end if
				else
					$(boxDesc[i]).hide();
			}//end for loop
			
			
		},function(){$('.desc-box').hide();});
		
	});
