$(document).ready(function(){

	$('.tabs').hover(function(){$(this).css({zIndex:1})},function(){$(this).css({zIndex:0})});

	$('.tab-container a').removeAttr('title');
	$('.tab-container').hover(
	function(){
		$(this).stop().dequeue().animate({width:185},80);
		}

	,function(){
			
			$(this).animate({width:38},80);
	});
})