// *** slide menu ***
$(document).ready(function()
{
	slide("#sliding-navigation", 25, 15, 150, .8);
});

function slide(navigation_id, pad_out, pad_in, time, multiplier)
{
	// creates the target paths
	var list_elements = navigation_id + " li.sliding-element";
	var link_elements = list_elements + " a";
	
	// initiates the timer used for the sliding animation
	var timer = 0;
	
	// creates the slide animation for all list elements 
	$(list_elements).each(function(i)
	{
		// margin left = - ([width of element] + [total vertical padding of element])
		$(this).css("margin-left","-180px");
		// updates timer
		timer = (timer*multiplier + time);
		$(this).animate({ marginLeft: "0" }, timer);
		$(this).animate({ marginLeft: "15px" }, timer);
		$(this).animate({ marginLeft: "0" }, timer);
	});

	// creates the hover-slide effect for all link elements 		
	$(link_elements).each(function(i)
	{
		$(this).hover(
		function()
		{
			$(this).animate({ paddingLeft: pad_out }, 150);
		},		
		function()
		{
			$(this).animate({ paddingLeft: pad_in }, 150);
		});
	});
}
// *** End of slide menu ***

// *** content switch ***
function content(obj)
{
	for (var x = 1; x <= 4; x++)
	{
		document.getElementById("link"+x).className = 'sliding-element';
		document.getElementById("subsite"+x).style.display = 'none';
	}
		
	obj.className='sliding-element';
	var tmp = obj.id;
	var num = tmp.substr(tmp.length-1);
	document.getElementById("subsite"+num).style.display = 'block';
}

function fotocontent(obj)
{
	for (var x = 1; x <= 4; x++)
	{
		document.getElementById("galleri"+x).className = 'contentsection1';
		document.getElementById("section"+x).style.display = 'none';
	}
		
	obj.className='contentsection';
	var tmp = obj.id;
	var num = tmp.substr(tmp.length-1);
	document.getElementById("section"+num).style.display = 'block';
}
// *** End of content switch ***

// *** Copyright ***
function noway(go) 
{ 
	if(document.all) 
	{ 
		if(event.button == 2) 
		{ 
			alert(popup); 
			return false; 
		} 
	} 

	if(document.layers) 
	{ 
		if(go.which == 3) 
		{ 
			alert(popup); 
			return false; 

		} 
	} 
} 

if(document.layers) 
{ 
	document.captureEvents(Event.MOUSEDOWN); 
} 
