function mouseOver(id){
	document.getElementById(id).style["background"] = "#e7f1f3";
}
function mouseOut(id){
	document.getElementById(id).style["background"] = "#ffffff";
}
function mouseOverGallery(id,img){
	document.getElementById(id).innerHTML="<div style='margin:12px;'><span class='bold'>Album:</span> Doakrajai@sukhunvit <div style='margin-top:10px'>Date: 05/11/2552<br>Owner: Gallery Administrator<br>Size: 33 items<br>View: 430</div></div>";
	document.getElementById(id).style["background"] = "#32312d";
	
}
function mouseOutGallery(id,img){
	document.getElementById(id).innerHTML="<img src='img/"+img+"'>";
}
