
$(document).ready(function()
{
	// Init kfBox
	//$.kfBox.groupNames = ['attached'];
	//$.kfBox.useHistory = false;		
		
	// Init shmBox
	$('.thickbox').kfBox();

	// External href
	$('a.external').click(function(){return !window.open($(this).attr("href"))});

	// Init paging
	$(".cycling").hide()
	$(".page-1").show()
	$(".a-1").addClass("active")
	
	// Homepage flash
	var flashvars = {};
	var params = {
		quality: "high",
		wmode: "transparent"
	};
	var attributes = {};

	swfobject.embedSWF("./flash/rotator-" + lang + ".swf", "intro-flash-content", "100%", "240", "9", "./flash/expressInstall.swf", flashvars, params, attributes);
	
	$(".img-motiv-change").mouseover(function() {
		motiv = $(this).attr("id").split("-");
		if (folders_motivs[motiv[2]] == undefined) {
			$("#img-motiv").html("");
		} else {
			$("#img-motiv").html("<img src='" + base_href + "underwood/download/images/thumbs_large/" + folders_motivs[motiv[2]][0] + "' alt='" + folders_motivs[motiv[2]][1] + "' />");
		}
	})/*.mouseout(function() {
		$("#img-motiv").html("");
	});*/
	
});

function showpage(page) {
	$(".cycling").hide()
	$(".a-paging").removeClass("active")
	$(".page-" + page).show()
	$(".a-" + page).addClass("active")
}
	

