/* Servizi brand */
$('#serviziBrand a').click(function(){
	$('#serviziBrand .selected').removeClass('selected');
	$(this).parent('li').addClass('selected');
	
	var id = $(this).attr('rel');
	
	$.ajax({
		url: 'pag/home_servizi.php',
		data: "brand="+id,
		cache: false,
		success: function(html){
			$('#serviziList').html(html);
		}
	});
	
	return false;
});
