$(document).ready(function(){
	$('.xl').hide().mouseover(function(){
		$(this).show().prev().addClass('hov');
	}).mouseout(function(){
		$(this).hide().prev().removeClass('hov');
	}).prev().removeClass('hov').mouseover(function(){
		$(this).next().fadeTo("slow", 0.9);
	}).mouseout(function(){
		$(this).next().hide();
	});
	
	$('#product').mouseover(function(){
		$(this).next().fadeTo("slow", 0.9);
	}).mouseout(function(){
		$(this).next().hide();
	}).next().mouseover(function(){
		$(this).show();
	}).mouseout(function(){
		$(this).hide();
	});
	
	$('.titt > a').each(function(i){
		$(this).mouseover(function(){
			$('.titt > a').removeClass('now').eq(i).addClass('now');
			$('.tab').hide().eq(i).show();
		});
	})
	
});
