var Bildbox = {
	init:function(picID) 
	{
		var picture = document.getElementById("picture-"+picID);
		
		if(confirm("Vill du verkligen ta bort denna bild?")){
			var picture = document.getElementById("picture-"+picID);
			$(picture).fadeOut('slow');
			
			$.get("ajax_request.php?DeletePic=" + picID);
			
		}
		
		
	},
	deleteuser:function(username)
	{
		var picture = document.getElementById("user-"+username);
		
		if(confirm("Vill du verkligen ta bort "+username)){
			var user = document.getElementById("user-"+username);
			$(user).fadeOut('slow');
			
			$.get("ajax_request.php?DeleteUser=" + username);
			
		}
	},
	startpage:function()
	{
		var avatars = document.getElementsByTagName("img");
		var array = [];
		for(var i = 0; i<avatars.length; ++i)
		{
			if(avatars[i].className == "startpage_image")
			{
				array[i] = avatars[i];
				array[i].style.zIndex = "1";
				array[i].onmouseover = function()
				{
					this.style.width = "80px";
					this.style.height = "80px";
					this.style.margin = "-20px";
					this.style.zIndex = "1000";
					this.style.position = "absolute";
				}
				
				array[i].onmouseout = function()
				{
					this.style.width = "40px";
					this.style.height = "40px";
					this.style.zIndex = "2";
					this.style.margin = "0px";
				}
			}
		}
	}
}
window.onload = Bildbox.startpage;