// lgoCart DOM/AJAX Class © 2008 Gareth watson
//////////////////////////////////////////////////////////////////////////////////////
//
//////////////////////////////////////////////////////////////////////////////////////
// Requires :
//
//////////////////////////////////////////////////////////////////////////////////////
/* Contains scripts needed for the shaped foam page
*/
//////////////////////////////////////////////////////////////////////////////////////
var shapeFoamQuote = new shapeFoamQuote();

//////////////////////////////////////////////////////////////////////////////////////
// shapeFoamQuote Class 
//////////////////////////////////////////////////////////////////////////////////////
function shapeFoamQuote(){ 
	// define class vars
	//var cartTotal;
	
	// Define arrays
	
	// define class methods
	this.swapDimensionImage = swapDimensionImage;
	
	// set the scope and other defaults
	//this.rowCounter = 0;
		
	//////////////////////////////////////////////////////////////////////////////////////
	function swapDimensionImage(requiredDimension,shapedImgName){
		
		// Get Target
		var shapeImageImg = document.getElementById('shapeImageImg');
		
		// Create URL
		var imageURL = "shapes/" + requiredDimension + "/" + shapedImgName;
		
		// Change Shape
		shapeImageImg.src = imageURL;
	}
	//////////////////////////////////////////////////////////////////////////////////////

}
