function toggleDescription()
{
    	$("#description").slideToggle("slow");
}

function toggleOpcje()
{
    	$("#opcje").slideToggle("slow");
}

function toggleWymagania()
{
    	$("#wymagania").slideToggle("slow");
}

function showBox(id)
{
	$('#stations').empty();
		$.ajax(
		{
			type: "POST",
			url: "/products/options",
			data: "id=" + id + "&version=box",
			beforeSend: function() {
			},
			success: function(txt) {
				$('#result').html(txt);
			},
			error: function(txt) {
			}
		}
	);
}

function showElectronic(id)
{
	$('#stations').empty();
	
	$.ajax(
		{
			type: "POST",
			url: "/products/options",
			data: "id=" + id + "&version=electronic",
			beforeSend: function() {
			},
			success: function(txt) {
				$('#result').html(txt);
			},
			error: function(txt) {
			}
		}
	);
}