﻿$(function() {
 
    $(".CS_product .introduction").hide();
   

     $(".CS_product .headline").hover(function(){
     	$(this).next().slideDown(200);
     	  
		
     	
     	}
     	,
     	function(){$(this).next().slideUp(10);
     	});
        
      
	
	
    //});
      
 //  $("a").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});
    
    
 });
