
var ray={
ajax:function(st)
	{
		this.show('load');
		this.show('load_img');
	},
show:function(el)
	{
		this.getID(el).style.display='';
	},
getID:function(el)
	{
		return document.getElementById(el);
	}
}


