var $ = jQuery;

$(document).ready(main);

function main() {
	$(".categories .cat-item img").each(function() {
		var title = $(this).attr('title');
		$(this).hover(function(){
			$('#category').stop(true,true).html(', ' + title).fadeIn(50);
		},function(){
			$('#category').stop(true,true).fadeOut(200, function() {
				$(this).html('')
			});
		});
	});
}