/*
 * Copyright(C) 2008. Idaho Fun Haus, LLC.
 * All Rights Reserved.
 */

function id(elem) { return document.getElementById(elem) }
function create(tag) { return document.createElement(tag)}

window.onload = function() {
	id("logo").onclick = function() { window.location.href = "http://www.idahofunhaus.com"; return true }
	id("s_inflatables").onclick = function() { window.location.href = "inflatables.php"; return true }
	id("s_tshirts").onclick = function() { window.location.href = "tshirts.php"; return true }
	id("s_gifts").onclick = function() { window.location.href = "gifts.php"; return true }
	id("s_new_2011_inflatables").onclick = function() { window.location.href="inflatables.php#new"; return true }
}


