jQuery.noConflict();

jQuery(document).ready(function()
{
	jQuery('#cat_div').hide();
	
	jQuery('#imgcat').hover(
			function ()
			{
				// Show - slide down.
				jQuery('#cat_div').stop(true, true).slideDown('normal');
			},
			function()
			{
				// Hide - slide up.
				jQuery('#cat_div').stop(true, true).slideUp('normal');
			}
			);
});
