$(document).ready(function(){ 
 
 		$('#categories_block_left li').hover(
		function(){
			$(this).find('ul:first').stop().css('display','block');	  
			$(this).find('a').attr('class','selec');
		}, function(){
			$(this).find('ul:first').stop().css('display','none');
			$(this).find('a').attr('class','');
		}
	);


});
