function init(){
	//make sure this function is executed only once
	if(arguments.callee.done)return;
	arguments.callee.done=true;
	
	//call all functions here

	externalLinks();
	
	Dostawcy.initialize();
	//ie specific functions
	/*@cc_on @*/
	/*@if (@_win32)
	
	nav();

	/*@end @*/
};

if(document.addEventListener){document.addEventListener("DOMContentLoaded", init, null);}
/*@cc_on @*/
/*@if (@_win32)
  document.write('<script defer="defer" src="/js/ie_onload.js"><'+'/script>');
/*@end @*/
window.onload=init;