function plumberimg(xxx)
{
	str_exp = xxx.split("_");
	$("#"+str_exp[0]).attr({src: "/pics/plumber/"+str_exp[1]+".jpg"});
}


function tileimg(xxx)
{
	str_exp = xxx.split("_");
	$("#"+str_exp[0]).attr({src: "/pics/tile/"+str_exp[1]+".jpg"});
}


/*
var height=0; 
var width=0;

if (self.screen) {
width = screen.width
height = screen.height
}
else if (self.java) {
var jkit = java.awt.Toolkit.getDefaultToolkit();
var scrsize = jkit.getScreenSize();
width = scrsize.width;
height = scrsize.height;
}

if (width <= 1024){
    document.writeln('<link rel="stylesheet" href="/css/css1024.css" type="text/css" />');
}else{
    document.writeln('<link rel="stylesheet" href="/css/css1280.css" type="text/css" />');
}
*/

/*
	function init_header(page)	{
		$("#about").animate({ opacity: 0.3 }, 0);
		$("#whatsnew").animate({ opacity: 0.3 }, 0);
		$("#tile").animate({ opacity: 0.3 }, 0);
		$("#plumber").animate({ opacity: 0.3 }, 0);
		$("#objects").animate({ opacity: 0.3 }, 0);
		$("#"+page+"link").animate({ top: "35px" }, 800);
	}
*/

	function off_opacity(id, speed)
	{
//		var jqid = "#"+id;
//		$(jqid).animate({ opacity: 1 }, speed);
	}

	function on_opacity(id, speed)
	{
//		var jqid = "#"+id;
//		$(jqid).animate({ opacity: 0.3 }, speed);
	}

