// JavaScript Document
$(document).ready(function () {

//$('ul').hide();

	$('#search').keyup(function(event) {
    
   
    
    
 //   $('ul').show(1000);
    
		var search_text = $('#search').val();
		var rg = new RegExp(search_text,'i');
		$('.lista-corsi .descrizione').each(function(){
        
        
         
        
        
 			if($.trim($(this).html()).search(rg) == -1) {
				$(this).parent().css('display', 'none');
 				$(this).css('display', 'none');
				$(this).next().css('display', 'none');
				$(this).next().next().css('display', 'none');
                
                
                
			}	
			else {
            
            
				$(this).parent().css('display', '');
				$(this).css('display', '');
				$(this).next().css('display', '');
				$(this).next().next().css('display', '');
                
                
			}
		});
	});
});

$('#search_clear').click(function() {
	$('#search').val('');	
  //  $('ul').hide(1000);
	
	$('.lista-corsi .descrizione').each(function(){
		$(this).parent().css('display', '');
		$(this).css('display', '');
		$(this).next().css('display', '');
		$(this).next().next().css('display', '');
	});
});
