
$(".contactLink").click(function() {
   window.location.href = 'mailto:'+'service'+'@'+'mihokofamily.com';
});
$(".contactLinkF").click(function() {
   window.location.href = 'mailto:'+'service'+'@'+'mihokofamily.com';
});
$(".contactLinkS").click(function() {
   window.location.href = 'mailto:'+'service'+'@'+'mihokoshop.com';
});



function varDump(variable)
{
	var deep = 0;
	var maxDeep = 20;

	function fetch(object, parent)
	{
		var buffer = '';
		deep++;

		for (var i in object) {
			if (parent) {
				objectPath = parent + '.' + i;
			} else {
				objectPath = i;
			}

			buffer += objectPath + ' (' + typeof object[i] + ')';

			if (typeof object[i] == 'object') {
				buffer += "\n";
				if (deep < maxDeep) {
					buffer += fetch(object[i], objectPath);
				}
			} else if (typeof object[i] == 'function') {
				buffer += "\n";
			} else if (typeof object[i] == 'string') {
				buffer += ': "' + object[i] + "\"\n";
			} else {
				buffer += ': ' + object[i] + "\n";
			}
		}

		deep--;
		return buffer;
	}

	if (typeof variable == 'object') {
		window.alert(fetch(variable));
		return;
	}

	window.alert('(' + typeof variable + '): ' + variable + "\n");
}

