function preloadIdImages()
{
	if (document.images)
	{
		var objImage = new Image();
		
		var arrImages = new Array();
		arrImages[0] = "/wp-content/themes/mdr_v2/images/identity/img_ID_1_C.jpg"; 
		arrImages[1] = "/wp-content/themes/mdr_v2/images/identity/img_ID_2_C.jpg"; 
		arrImages[2] = "/wp-content/themes/mdr_v2/images/identity/img_ID_3_C.jpg"; 
		arrImages[3] = "/wp-content/themes/mdr_v2/images/identity/img_ID_4_C.jpg"; 
		arrImages[4] = "/wp-content/themes/mdr_v2/images/identity/img_ID_5_C.jpg"; 
		arrImages[5] = "/wp-content/themes/mdr_v2/images/identity/img_ID_6_C.jpg"; 
		arrImages[6] = "/wp-content/themes/mdr_v2/images/identity/img_ID_7_C.jpg"; 
		arrImages[7] = "/wp-content/themes/mdr_v2/images/identity/img_ID_8_C.jpg"; 
		arrImages[8] = "/wp-content/themes/mdr_v2/images/identity/img_ID_9_C.jpg"; 
		arrImages[9] = "/wp-content/themes/mdr_v2/images/identity/img_ID_10_C.jpg"; 
		arrImages[10] = "/wp-content/themes/mdr_v2/images/identity/img_ID_11_C.jpg"; 
		arrImages[11] = "/wp-content/themes/mdr_v2/images/identity/img_ID_12_C.jpg"; 
		
		for (var i=0; i<arrImages.length; i++)
		{
			objImage.src = arrImages[i];
		}
	}
}

function toggleIdImage(id, file)
{
	var element = document.getElementById(id);
	
	if (element != null)
	{
		element.src = file;
	}
}

var images = new Array();
function loadIdImages()
{
    if(document.images)
    {
        var pictures=new Array();
        
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_1_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_2_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_3_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_4_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_5_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_6_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_7_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_8_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_9_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_10_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_11_C.jpg");
	    pictures.push("/wp-content/themes/mdr_v2/images/identity/img_ID_12_C.jpg");
        
        for (var i=0; i<pictures.length; i++)
        {
            var oImg = new Image();
            oImg.src=pictures[i];
            images.push(oImg);
        }
    }    
}

function imagesLoaded(imgs)
{
	for (i=0; i<imgs.length; i++)
	{
		if (!imgs[i].complete)
		{
			return false;
		}
		
		if (typeof imgs[i].naturalWidth != "undefined" && imgs[i].naturalWidth == 0)
		{
			return false;
		} 
	}
	
	return true;
}

function validateContact(oForm)
{
	if (oForm.tbxName.value == "")
	{
		alert("Please enter your Name.");
		oForm.tbxName.focus();
		return false;
	}
	else if (oForm.tbxEmail.value == "")
	{
		alert("Please enter your Email.");
		oForm.tbxEmail.focus();
		return false;
	}
	else if (oForm.tbxMessage.value == "")
	{
		alert("Please enter your Message.");
		oForm.tbxMessage.focus();
		return false;
	}
	else
	{
		return true;
	}
}

function validateMailingList(oForm)
{
	if (oForm.tbxName.value == "")
	{
		alert("Please enter your Name.");
		oForm.tbxName.focus();
		return false;
	}
	else if (oForm.tbxEmail.value == "")
	{
		alert("Please enter your Email.");
		oForm.tbxEmail.focus();
		return false;
	}
	else
	{
		return true;
	}
}