$(document).ready(function() {

	var speed = 300;

	$('li.cat em') .hover(function() {
		$(this).css('color', '#f3f3f3');	
	}, function() {
		$(this).css('color', '#FFF');	
	});
	/*
	$('li.cat em').click(function() {
		if (!$(this).next('ul').hasClass('open')) {
			if ($(this).next('ul').length != 0) {
				$('li.cat ul').slideUp(speed);
				$('li.cat ul').removeClass('open');
				$(this).next('ul').slideDown(speed);
				$(this).next('ul').addClass('open');
			};
		}else{
			$('li.cat ul').slideUp(speed);
			$('li.cat ul').removeClass('open');
		};
	});	
	*/

});
