/**
* Obsługa katalogu produktów. Moduł: sklep
* Autor: Filip Chmarzyński
*
*/

$().ready(
	function(){
		$("#AmountPerSiteList").change(function () { 
			$.cookie('list_items',$("#AmountPerSiteList option:selected").val(),{ path: '/', expires: 7 });
  			location.reload(); 
  			return false;
		});
		
		$("#AmountPerSiteBox").change(function () { 
			$.cookie('box_items',$("#AmountPerSiteBox option:selected").val(),{ path: '/', expires: 7 });
  			location.reload(); 
  			return false;
		});
	
});
