﻿// Define the global namespace object
var DMD = window.DMD || {};

//********************************************************************
//  Class: ItemImage
//********************************************************************
DMD.ItemImage = function()
{
	return {
		//--------------------------------------------------------------
		swap : function(imageSource)
		{
			document.getElementById('imageMain').src = imageSource;
		}
	}
}();

//********************************************************************
//  Class: Utility
//********************************************************************
DMD.Util = function()
{
	return {
		//--------------------------------------------------------------
		checkAll : function()
		{
			var checkboxList = document.getElementsByTagName('input');
			for ( var i = 0; i < checkboxList.length; i++ ) {
				checkboxList[i].checked = document.getElementById('checkboxAll').checked;
			}
		}
	}
}();
