	var themePath = "/jScripts/jQueryTools/themes/";
	var themeName = jQuery(".hourOfOp").attr('id');
	var imagePath = themePath + themeName + "/";
	var mainClass = 'hourOfOpToolTip-' + themeName;
	jQuery('#mainHours').addClass(mainClass);

	
	var topLeft = imagePath + "top-left.png";
	var topMiddle = imagePath + "top-middle.png";
	var topRight = imagePath + "top-right.png";
	
	var middleLeft = imagePath + "middle-left.png";
	var middleRight = imagePath + "middle-right.png";
	
	var bottomLeft = imagePath + "bottom-left.png";
	var bottomMiddle = imagePath + "bottom-middle.png";
	var bottomRight = imagePath + "bottom-right.png";

	var bottomTail = imagePath + "tail-bottom.png";

	document.getElementById('topLeft').style.backgroundImage = 'url(' + topLeft + ')';
	document.getElementById('topMiddle').style.backgroundImage = 'url(' + topMiddle + ')';
	document.getElementById('topRight').style.backgroundImage = 'url(' + topRight + ')';
	
	document.getElementById('middleLeft').style.backgroundImage = 'url(' + middleLeft + ')';
	document.getElementById('middleRight').style.backgroundImage = 'url(' + middleRight + ')';
	
	document.getElementById('bottomLeft').style.backgroundImage = 'url(' + bottomLeft + ')';
	document.getElementById('bottomMiddle').style.backgroundImage = 'url(' + bottomMiddle + ')';
	document.getElementById('bottomRight').style.backgroundImage = 'url(' + bottomRight + ')';
	
	document.getElementById('bottomTail').src = bottomTail;
	

