jQuery(document).ready(function(){
	$('#b4v_centro_0').click(function(){
		$('div[id^=b4v_ind]').hide();
		$('#b4v_ind0').show();
		var $this = $(this);
		$this.attr('src', '/img/ico_cartaCredito_on.jpg');
		$this.next('img').attr('src', '/img/ico_bloccaPrezzo.jpg').next('img').attr('src', '/img/ico_callCenter.jpg').next('img').attr('src', '/img/ico_vaiAgenzia.jpg');
	});
	$('#b4v_centro_1').click(function(){
		$('div[id^=b4v_ind]').hide();
		$('#b4v_ind1').show();
		var $this = $(this);
		$this.attr('src', '/img/ico_bloccaPrezzo_on.jpg');
		$this.prev('img').attr('src', '/img/ico_cartaCredito.jpg');
		$this.next('img').attr('src', '/img/ico_callCenter.jpg').next('img').attr('src', '/img/ico_vaiAgenzia.jpg');		
	});
	$('#b4v_centro_2').click(function(){
		$('div[id^=b4v_ind]').hide();
		$('#b4v_ind2').show();
		var $this = $(this);
		$this.attr('src', '/img/ico_callCenter_on.jpg');
		$this.prev('img').attr('src', '/img/ico_bloccaPrezzo.jpg').prev('img').attr('src', '/img/ico_cartaCredito.jpg');				
		$this.next('img').attr('src', '/img/ico_vaiAgenzia.jpg');		
	});
	$('#b4v_centro_3').click(function(){
		$('div[id^=b4v_ind]').hide();
		$('#b4v_ind3').show();
		var $this = $(this);
		$this.attr('src', '/img/ico_vaiAgenzia_on.jpg');
		$this.prev('img').attr('src', '/img/ico_callCenter.jpg').prev('img').attr('src', '/img/ico_bloccaPrezzo.jpg').prev('img').attr('src', '/img/ico_cartaCredito.jpg');
	});	
	$('#b4v_sopra').click(function(){
		$('div[id^=b4v_ind]').hide();
		$('img[id^=b4v_centro_]').each(function(){
			var $this = $(this);
			var id = $this.attr('id');
			$this.attr('src', '/img/' + id + 'off.jpg');
		});
	});
});