$(document).ready(function() {
	
	$('.b-specoffers .items A').click(function(){
		$('.b-specoffers LI').removeClass('active');
		$(this).parent().addClass('active');
					
		 
		// Фотография
		$('.b-specoffers .big-photo IMG').attr('src', $('.image', $(this).parent()).html());
		
		// Ссылка
		$('.b-specoffers .title A').attr('href', $(this).attr('href'));
		
		
		// Название
		$('.b-specoffers .title A').html($('U', this).html());
		
		// Стоимость
		var price = $('.price', $(this).parent()).html();
		$('.b-specoffers .price .n').html(price);
		$('.b-specoffers .price-shadow DIV').html(price);
		// показывать или нет знак рубля
		if ( $(this).attr('id')==1) {$('.rub').hide(); }
		else {$('.rub').show();}
		
			
		return false;
	});
	
});