$j = jQuery.noConflict();
$j(function(){
	$j("marquee").marquee("marquee_animation");
	
	var all = $j(".kwicks .kwick");
	
	$j(all).mouseenter(function() {
		
		$j(all).stop(true);
		
		var others = $j(all).not($j(this));
		$j(others).each(function(){
			$j(this).animate({
				width: '94px'
			}, 500);
		});
		
		$j(this).animate({
			width: '316px'
		}, 500);
	});
});
