/*
 * Image preview script 
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by Alen Grakalic (http://cssglobe.com)
 * 
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */

function hidden(arg)
{
	arg+="";
	document.getElementById(arg).style.display='none';
	
}

function show_help(e,id)
{
	document.getElementById(e).style.display='block';
	
}

