
function openMenu(id){
	$(".tabs_menu").hide();
	offs=$(".mainMenu").offset();
	$(".tabs_menu#"+id).offset({ top: offs.top+30});
	$(".tabs_menu#"+id).show();
	mcancelclosetime();
	menuitem=id;
	}
function closeMenu(){
	$(".tabs_menu#"+menuitem).hide();
	}
// go close timer
function mclosetime()
{
	closetimer = window.setTimeout(closeMenu, timeout);
}	
function mcancelclosetime()
{
	if(closetimer)
	{
		window.clearTimeout(closetimer);
		closetimer = null;
	}
}

var expandAlbum=function(id){
	  var data="action=expandAlbum&albumID="+id;
	  var url="actionController.php";
	  $.ajax({
		   type: "GET",
		   url: url,
		   data: data,
		   cache: false,
		   success: function(resp){
		   $(".albumImages").html("");
		   $(".albumImages").html(resp);
		   $(".albumImages").slideDown();
		   scrollme();
		   }
		 });
		}
		
function scrollme(){
dh=document.body.scrollHeight
ch=document.body.clientHeight
if(dh>ch){
moveme=dh-ch
window.scrollTo(0,moveme)
}
}		
