function showForm(Id)
{
	// прячим дивы
	$("#cart_with_reg").hide();
	$("#cart_without_reg").hide();
	
	// показываем нужный
	$("#" + Id).show();
	
	// обнуляем все классы
	$("#li_cart_with_reg").removeClass("act");
	$("#li_cart_without_reg").removeClass("act");
	
	$("#li_" + Id).addClass("act");
}

function swapImage(aImage)
{
	$("#mainImage").attr('src', '/upload/goods/good_' + aImage);
	$("#mainImageLink").attr('href', '/upload/goods/' + aImage);
}


$(function(){
   $("form.validate").validate();
   $(".scrollable").scrollable();
});

