/* API - created by Valentin Agachi - http://agachi.name/ */

var api = {
	filterEnhance: function() {
		var o = $('#filter');
		if (o.size() <= 0) return;
		$('#filter > ul > li').
			bind('mouseover', new Function("this.className+=' hover';")).
			bind('mouseout', new Function("this.className = this.className.replace('hover', '');"));
	}
};

load.register(api.filterEnhance);
/* 393 393 */