var input = " "+ document.location;
	var vinput = new Array();
	var get = new Array();
	vinput = input.split("?");
   	if (vinput.length == 2)
	{
		gets = vinput[1].split("&");
	}
   
	function check(checkVar)
	{
		for(i = 0; i < gets.length; i ++)
		{
			var test = gets[i].split("=");
			if (test[0] == checkVar)
			{
				return test[1];
			}
		
		}
		return false;
	}
	
	function load_images()
	{
		if (check("client") == "avis")
		{
			document.getElementById('main_image').src = 'images/product-photos/computer-cut/avis.jpg';
		}
		else if (check("client") == "fire")
		{
			document.getElementById('main_image').src = 'images/product-photos/computer-cut/fire.jpg';
		}
		else if (check("client") == "glynburn")
		{
			document.getElementById('main_image').src = 'images/product-photos/digital/glynburn.jpg';
		}	
		else if (check("client") == "aaa")
		{
			document.getElementById('main_image').src = 'images/product-photos/computer-cut/aaa-recycling.jpg';
			document.getElementById('product-main').style.height ='203px';
		}	
		else if (check("client") == "tint")
		{
			document.getElementById('main_image').src = 'images/product-photos/corflute/tint-a-car.jpg';
			document.getElementById('product-main').style.height ='203px';
		}
		else if (check("client") == "direct")
		{
			document.getElementById('main_image').src = 'images/product-photos/automotive/direct-freight.jpg';
		}
		else if (check("client") == "century21")
		{
			document.getElementById('main_image').src = 'images/product-photos/general/century21.jpg';
			document.getElementById('product-main').style.height ='348px';
		}
		else if (check("client") == "isuzu")
		{
			document.getElementById('main_image').src = 'images/product-photos/automotive/north-east-isuzu.jpg';
		}		
	}
	
	
	
	