	// General Functions //
	// ================================================
	function addLoadEvent(func) {
		var oldonload = window.onload;
		if (typeof window.onload != 'function') {
			window.onload = func;
		} else {
			window.onload = function() {
				if (oldonload) {
					oldonload();
				}
				func();
			}
		}
	}
	
	
	
	// INDEX PROCESS SCRIPTS //
	// ================================================
	function indProcess(i) {
		
		var header = new Array('index0','Consultation', 'Design', 'Fabrication', 'Wax Carving &amp; Casting', 'Settings / Textures', 'Timeline', 'Estimates', 'Financing');
		
		var descript = new Array(
			'index0',
			'Consult with our in-house designer either by visiting in our family-owned store or through this user friendly website. Whatever your preference, you\'ll receive stellar customer service as you start your creative journey with us.',
			'Once we have a concept for your original piece, our jewelry artist will produce detailed sketches as well as a computer-generated images to allow you to view the design from every angle. We will make adjustments and fine-tune these images until you are confident that our renderings match your vision precisely.',
			'The uniqueness of your individual design may prompt us to apply the artful, old world technique of fabrication. In this technique, we will forge or fabricate elements from fine metals to create your exclusive jewelry.',
			'After we have your approval on the wax model, the casting step begins. Casting is an ancient process that we perform in small batches. For the vast majority of our pieces, the casting is done in-house. Once cast, each piece must be individually polished by expert hands to bring out the perfect finish.',
			'> Filigree <br /> > Setting <br /> > Hand Engraving <br /> > Texture, Finishes & Detailing',
			'Uniting new world technology with old world craftsmanship, our world class custom design process generally takes 4-6 weeks.',
			'All firm estimates are given in a written form and are valid for 30 days. After 30 days, we reserve the right to re-evaluate the estimate against current market values. It is the responsibility of the customer to present a valid  estimate prior to any work being done.',
			'We offer  a 90 day same as cash arrangement with 12 months available seasonally.');
		
		var img = new Array('index0','block.gif','block.gif','block.gif','block.gif','block.gif','timeline.gif','estimates.gif','financing.gif');
		
		document.getElementById("indexProcHead").innerHTML=header[i];
		document.getElementById("indexProcText").innerHTML=descript[i];
		document.getElementById("indexChanges").src = "images/index/changes/"+img[i];
		document.getElementById("indexProcNext").onclick = function() {nextProc(i+1);}
					
		if (i==8){
			document.getElementById("indexProcNext").style.visibility = "hidden";
		} else {
			document.getElementById("indexProcNext").style.visibility = "visible";}					 
		
		var a=1;
		for (a=1;a<=8;a++)
			{	document.getElementById("proc"+i).style.borderBottom = "1px solid #3F5261";
				document.getElementById("proc"+a).style.borderBottom = "1px solid #000"; 
			}
	}

	function nextProc(i) {
				
		if (i == 1) {
			indProcess(1)
		} else if (i == 2) {
			indProcess(2)
		} else if (i == 3) {
			indProcess(3)
		} else if (i == 4) {
			indProcess(4)
		} else if (i == 5) {
			indProcess(5)
		} else if (i == 6) {
			indProcess(6)
		} else if (i == 7) {
			indProcess(7)
		} else if (i == 8) {
			indProcess(8)
		}
	}


	function setScroll() {
		$('#shopNavIMGcon').jScrollHorizontalPane({showArrows:true});						
	};
