// JavaScript Document
function DoesShowStockExist() {
	if (document.getElementById('noticestock')) { 
		ShowStockBox();	
}	 }

if(typeof LoadShopColour == 'function' && typeof LoadColour == 'function') {
	function LoadBoth() {
		LoadColour();
		LoadShopColour();
		DoesShowStockExist();
	}
	window.onload =	LoadBoth;
	window.onresize = ShowLeftScroll;
} else if(typeof LoadShopColour == 'function') {
	function LoadBoth() {
		LoadShopColour(); /* custom made - shopping left*/
		DoesShowStockExist();
		if (document.getElementById('gespot_loading')) {
			HideOneDiv('gespot_loading'); ShowOneDiv('gespot_images');
		}
	}
	window.onload =	LoadBoth; /* custom made - shopping left*/
	window.onresize = ShowLeftScroll;

} else if(typeof LoadColour == 'function') {
	function LoadBoth() {
		LoadColour(); /* custom made - shopping main*/
		DoesShowStockExist();
		if (document.getElementById('gespot_loading')) {
			HideOneDiv('gespot_loading'); ShowOneDiv('gespot_images');
		}
	}
	window.onload =	LoadBoth; /* custom made - shopping main*/
	window.onresize = ShowLeftScroll;
} else {
	function LoadBoth() {
		DoesShowStockExist();
		ShowLeftScroll();
		if (document.getElementById('gespot_loading')) {
			HideOneDiv('gespot_loading'); ShowOneDiv('gespot_images');
		}
	}
	window.onload =	LoadBoth; /* custom made - shopping main*/
	window.onresize = ShowLeftScroll;
}

if(typeof LoadColour == 'function') { LoadColour(); }
if(typeof LoadShopColour == 'function') { LoadShopColour(); }

<!--GOOGLE CODE-->
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-17601186-1']);
  _gaq.push(['_trackPageview']);
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
<!--GOOGLE CODE-->

