/*
=========================================

Copyright ===> Projekt Studio
License ===> Partner

Made by Bartosz Szczypiński Projekt Studio
www.projektstudio.pl

=========================================
*/


$(function() {
	$('.lightbox').lightBox({fixedNavigation:true});
});

$(function() {
	$('.lightbox2').lightBox({fixedNavigation:true});
});

var startingIndex = 3;

$(document).ready(function($)
{
	
	$('#buttonAdd5').click(function () {
	
	  for (i=0;i<5;i++)
	  {	
	  startingIndex++;
	  $('#tbody_zamowienie').append("<tr><td class=\"number\">"+startingIndex+".<input type=\"hidden\" name=\"fields2["+startingIndex+"][opis]\" value=\""+startingIndex+"\" /></td><td class=\"catalog\"><input name=\"fields2["+startingIndex+"][val][]\" type=\"text\" /></td><td class=\"nameCell\"><input name=\"fields2["+startingIndex+"][val][]\" type=\"text\" /></td><td class=\"quantity\"><input name=\"fields2["+startingIndex+"][val][]\" type=\"text\" /></td><td class=\"comment\"><input name=\"fields2["+startingIndex+"][val][]\" type=\"text\" /></td></tr>");
	  }	
		
    });
	 
	 
	 $('#izamButton').click(function () {
      $('#izamForm').submit();
    });
    
});



