$(document).ready(function() {$("ul#dd_client").hoverIntent(  function () {    $("ul#dd_client ul").slideDown(200);	$(".dd_btn_cat_list span.arrow-r em", this).animate({		top: '0',		rotate: '+=90deg'}, 200	);  },  function () {    $("ul#dd_client ul").slideUp(200);	$(".dd_btn_cat_list span.arrow-r em", this).animate({		top: '8px',		rotate: '-=90deg'}, 200	);	});$("ul#dd_category").hoverIntent(  function () {    $("ul#dd_category ul").slideDown(200);	$(".dd_btn_cat_list span.arrow-r em", this).animate({		top: '0',		rotate: '+=90deg'}, 200	);  },  function () {    $("ul#dd_category ul").slideUp(200);	$(".dd_btn_cat_list span.arrow-r em", this).animate({		top: '8px',		rotate: '-=90deg'}, 200	);	});$(".portfolio-block a").hover(  function () {	$(".hfx-info", this ).fadeIn(200);  },  function () {	$(".hfx-info").fadeOut(200);  });	});
