var pics = new Array();
var currentSection;
var currentLangPath;

if(!checkCookie('currentSection'))
{
	currentSection='welcome';
	setCookie('currentSection',currentSection,1);
}
else
{
	currentSection=getCookie('currentSection');
}

if(!checkCookie('currentLangPath'))
{
	currentLangPath='./content_pl_pl/';
	setCookie('currentLangPath',currentLangPath,1);
}
else
{
	currentLangPath=getCookie('currentLangPath');
}

if (document.images)
{
	pics['welcome'] = new Image(221,299); 
	pics['welcome'].src="./images/4t1.jpg"; 
	pics['about_us'] = new Image(221,299); 
	pics['about_us'].src="./images/2t1.jpg"; 
	pics['services'] = new Image(221,299); 
	pics['services'].src="./images/5t1.jpg"; 
	pics['benefits'] = new Image(221,299); 
	pics['benefits'].src="./images/3t1.jpg"; 
	pics['positions'] = new Image(221,299); 
	pics['positions'].src="./images/1t1.jpg"; 
	pics['contacts'] = new Image(221,299);
	pics['contacts'].src="./images/bw_globe_people.jpg";
	pics['about_canada'] = new Image(221,299);
	pics['about_canada'].src="./images/bw_globe_people.jpg";
}

var sections = new Array();
sections['welcome'] = 'frontPage.php'; 
sections['about_us'] = 'about_us.html'; 
sections['services'] = 'services.html'; 
sections['benefits'] = 'benefits.html'; 
sections['positions'] = 'positions.php';
sections['contacts'] = 'contacts.html';
sections['about_canada'] = 'about_canada.html';

