	$(function()
	{
		$('a[@rel*=lightbox]').lightBox();
	});
	
	function galeriaPopup(id)
	{
		window.open('http://babatervezes.hu/galeria_popup/' + id, '', 'width=550, height=615');
	}

	function onTermekTulajdonsagElemValasztas(item, cDiv)
	{
		$.ajax({
			url: "http://babatervezes.hu/ajaxGetKonfigElemKep.php?id=" + $("#" + item).val() + "&meret=100",
			cache: false,
			beforeSend: function()
			{
				$("#" + cDiv).html("<img src='http://babatervezes.hu/img/ajaxloading01.gif' style='border: 0px;' />");
			},
			success: function(output)
			{
				$("#" + cDiv).html(output);
			}
		});
	}
	