function checkBrowserWidth()
{
	var theWidth = getBrowserWidth();

	if (IE4plus)
	{

		theWidth = theWidth + 25;
	}

	if (theWidth > 1054)
	{
		//changeImages('webApplications', 'webApplications100');
		//changeImages('mediaSoftware', 'mediaSoftware100');
		//changeImages('desktopApplications', 'desktopApplications100');
		//changeImages('deviceDrivers', 'deviceDrivers100');
		//changeImages('embeddedSystems', 'embeddedSystems100');
		//document.getElementById('homeWhite1').style.width='12px';
		//document.getElementById('homeWhite2').style.width='12px';
		//document.getElementById('homeWhite3').style.width='12px';
		//document.getElementById('homeWhite4').style.width='12px';
	}
	else if (theWidth > 961)
	{
		//changeImages('webApplications', 'webApplications90');
		//changeImages('mediaSoftware', 'mediaSoftware90');
		//changeImages('desktopApplications', 'desktopApplications90');
		//changeImages('deviceDrivers', 'deviceDrivers90');
		//changeImages('embeddedSystems', 'embeddedSystems90');
		//document.getElementById('homeWhite1').style.width='9px';
		//document.getElementById('homeWhite2').style.width='9px';
		//document.getElementById('homeWhite3').style.width='9px';
		//document.getElementById('homeWhite4').style.width='9px';
	}
	else if (theWidth > 868)
	{
		//changeImages('webApplications', 'webApplications80');
		//changeImages('mediaSoftware', 'mediaSoftware80');
		//changeImages('desktopApplications', 'desktopApplications80');
		//changeImages('deviceDrivers', 'deviceDrivers80');
		//changeImages('embeddedSystems', 'embeddedSystems80');
		//document.getElementById('homeWhite1').style.width='6px';
		//document.getElementById('homeWhite2').style.width='6px';
		//document.getElementById('homeWhite3').style.width='6px';
		//document.getElementById('homeWhite4').style.width='6px';
	}
	else if (theWidth > 775)
	{
		//changeImages('webApplications', 'webApplications70');
		//changeImages('mediaSoftware', 'mediaSoftware70');
		//changeImages('desktopApplications', 'desktopApplications70');
		//changeImages('deviceDrivers', 'deviceDrivers70');
		//changeImages('embeddedSystems', 'embeddedSystems70');
		//document.getElementById('homeWhite1').style.width='3px';
		//document.getElementById('homeWhite2').style.width='3px';
		//document.getElementById('homeWhite3').style.width='3px';
		//document.getElementById('homeWhite4').style.width='3px';
	}
	else if (theWidth <= 775)
	{
		//changeImages('webApplications', 'webApplications60');
		//changeImages('mediaSoftware', 'mediaSoftware60');
		//changeImages('desktopApplications', 'desktopApplications60');
		//changeImages('deviceDrivers', 'deviceDrivers60');
		//changeImages('embeddedSystems', 'embeddedSystems60');
		//document.getElementById('homeWhite1').style.width='2px';
		//document.getElementById('homeWhite2').style.width='2px';
		//document.getElementById('homeWhite3').style.width='2px';
		//document.getElementById('homeWhite4').style.width='2px';
	}

	return true;
}




function getBrowserWidth()
{
	if (window.innerWidth)
	{
		return window.innerWidth;
	}
	else if (document.documentElement && document.documentElement.clientWidth != 0)
	{
		return document.documentElement.clientWidth;
	}
	else if (document.body)
	{
		return document.body.clientWidth;
	}
	
	return 0;
}
