$(document).ready(function()
{

	$("[id^=img-]").each(function()
	{
		$(this).mouseover(function()
		{
			$(this).attr("src", "/gfx/menu/"+$(this).attr("id").replace("img-", "")+"_red.png");
		}).mouseout(function()
		{
			$(this).attr("src", "/gfx/menu/"+$(this).attr("id").replace("img-", "")+".png");
		});
	});
	
	$("#galeria .gal").lightBox();
});

function zapis_submit()
{
	$("#forma").submit();
}