//mouseleave
jQuery.inputHighlight = function(color){  
    $("input[type='text'],textarea").each(function(){		
        $(this).focus(function(){
			if( this.id != 'none')
	            $(this).css({"background" : color});  
        });  
        $(this).blur(function(){
			if( this.id != 'none')
            $(this).css({"background" : "white"});  
        });  
    });  
}

$(document).ready(function(){
	//$.inputHighlight("#f1fbff");
	$('.category .cat_list li').mouseover(function(){
		$(this).addClass('hover');
		$(this).find('.scat').show();
	}).mouseleave(function(){
		$(this).removeClass('hover');
		$(this).find('.scat').hide();
	});	
});

