function menu_include(siteurl) {
	//jQuery(".menu3box:empty").remove();
	jQuery("#tpl_transline").fadeTo(0, 0.35);
}

function menu_over(id) {
	jQuery(".menu" + id).each(function() {
		jQuery("img:first", this).css({'display' : 'none'});
		jQuery("img:last", this).css({'display' : 'block'});
		//jQuery("img:first", this).fadeOut(600);
		//jQuery("img:last", this).fadeIn(600);
		//jQuery(this).fadeOut("fast");
	});
}

function menu_out(id) {
	jQuery(".menu" + id).each(function() {
		jQuery("img:first", this).css({'display' : 'block'});
		jQuery("img:last", this).css({'display' : 'none'});
		//jQuery("img:first", this).fadeIn(600);
		//jQuery("img:last", this).fadeOut(600);
		//jQuery(this).fadeIn("fast");
	});
}
