jQuery.noConflict();
     
     // Use jQuery via jQuery(...)
jQuery(document).ready(function () {
	// find the elements to be eased and hook the hover event
	 jQuery("div.jimgMenu ul li a").hover(function() {  
	// if the element is currently being animated
	if ( jQuery(this).is(":animated")) {
		jQuery(this).addClass("active").stop().animate({width: "310px"}, {duration: 450, easing: "easeOutQuad", complete: "callback"});
	} else {
	// ease in quickly
		jQuery(this).addClass("active").stop().animate({width: "310px"}, {duration: 400, easing: "easeOutQuad", complete: "callback"});
	}
	}, function () {
		// on hovering out, ease the element out
		if (jQuery(this).is(":animated")) {
			jQuery(this).removeClass("active").stop().animate({width: "78px"}, {duration: 400, easing: "easeInOutQuad", complete: "callback"})
		} else {
		// ease out slowly
			jQuery(this).removeClass("active").stop(":animated").animate({width: "78px"}, {duration: 450, easing: "easeInOutQuad", complete: "callback"});
		}
	});
	
	jQuery("div.jimgMenu ul li a.actived").addClass("active").stop().animate({width: "310px"}, {duration: 400, easing: "easeOutQuad", complete: "callback"});
	
});