/********************************************************************/
// vars
/********************************************************************/

var sExpressInstall = "http://www.manss.com/clients/zab/web/pix/expressInstall.swf";
var captionDiv = "captionDiv";


/********************************************************************/
// general functions
/********************************************************************/

// address flash movie for external interface in action script
function thisMovie( movieName )
{
    if ( navigator.appName.indexOf("Microsoft") != -1 )
    {
        return window[movieName];
    }
    else
    {
        return document[movieName];
    }
}

/********************************************************************/
// FAQ
/********************************************************************/
var activeFaq = null;

function showFaq ( layerId )
{
	if ( document.getElementById( layerId ) )
	{
		selectedFaq = document.getElementById( layerId );
		if ( selectedFaq.style.display == "block" )
		{
			selectedFaq.style.display = "none";
			activeFaq = null;
		}
		else if ( activeFaq != selectedFaq )
		{
			if ( activeFaq != null )
			{
				activeFaq.style.display = "none";
			}
			selectedFaq.style.display = "block";
			activeFaq = selectedFaq;
		}
	}
}
// Accordion
$(document).ready(function() {
	$("#navi ul").accordion({
		header : "h3",
		//navigation : true,
		active : ".current",
		alwaysOpen : false,
		autoHeight : false
	});
});
//Homepage-Animation
 $(function() {
        $("#blogs").jCarouselLite({
            btnPrev: ".featured .up",						
            btnNext: ".featured .down",
            scroll: 1,
            visible: 1,
            circular: true,
            vertical: true,
            speed: 800
        });		
    }); 
