/*$(function() {
	$('#right').height($('#main').height() - 2);
	$('#products_info ul li a').click(function() {
		var box = '#' + $(this).attr('id') + '_box';
		$('#products_info ul li').removeClass('product_info_current');
		$(this).parent('li').addClass('product_info_current');
		$('.product_desc:visible').hide();
		$(box).show();
		return false;
	});
});*/
