﻿var Email = {
    obfuscate : function (mb, dm) 
    {
	    document.write('<a href=\"mailto:' + mb + '@' + dm + '\">');
	    document.write(mb + '@' + dm + '</a>');
    }
}

var Images = {
	_images : [ 
		"_all-iimages-cropped_1.jpg", 
		"_all-iimages-cropped_2.jpg", 
		"_all-iimages-cropped_3.jpg", 
		"_all-iimages-cropped_4.jpg", 
		"_all-iimages-cropped_5.jpg", 
		"_all-iimages-cropped_6.jpg", 
		"_all-iimages-cropped_7.jpg" ],
	random : function (id, path)
	{
		var index = Math.floor((Math.random() * ((Images._images.length - 1) - 0 + 1)) + 0);
		$(id).src = path + "/" + Images._images[index];
	}
}
