var bgimg_intervall = 20000; // Millisek. 1000 = 1 sek

jQuery().ready(function(){
    jQuery('#projects_de,#projects_en').accordion({
        header: 'h1.title',
        active: false,
        alwaysOpen: false,
        animated: "slide",
        autoheight: false
    });
    
    $("#logo,#workbut,#refbut,#aboutbut,#contactbut,#pressbut").click(function(){
		jQuery('#projects_de,#projects_en').accordion("activate",-1);    	
    });
});

$(document).ready(function()
{   
    $(document).pngFix();
    $(".lightbox").lightbox({fitToScreen: true}); 
    setInterval("change_bgimg()", bgimg_intervall);    
    $("#show,#work,#pro,#ref,#about,#contact,#press").hide();
    
    $("#sprachede").click(function(){
        $(".english").hide();
        $(".deutsch").show();
        $("#sprachede").addClass('selected');
        $("#spracheen").removeClass('selected');
    });

    $("#spracheen").click(function(){
        $(".english").show();
        $(".deutsch").hide();
        $("#spracheen").addClass('selected');
        $("#sprachede").removeClass('selected');
    });
    
    //$("#news").hide();
    
    $("#logo").click(function(){
        $("#home,#news,#newsweiss").show();
        $("#work,#pro,#ref,#about,#contact,#press").hide();
        $("#workbut,#probut,#refbut,#aboutbut,#contactbut,#pressbut").removeClass('aktiv');
    });

    $("#workbut").click(function(){
        $("#work").fadeIn(2000);
        $("#home,#pro,#ref,#about,#contact,#press,#news,#newsweiss").hide();
        $("#workbut").addClass('aktiv');
        $("#probut,#refbut,#aboutbut,#contactbut,#pressbut").removeClass('aktiv');
    });

    $("#probut").click(function(){
        $("#pro").fadeIn(2000);
        $("#home,#work,#ref,#about,#contact,#press,#news,#newsweiss").hide();
        $("#probut").addClass('aktiv');
        $("#workbut,#refbut,#aboutbut,#contactbut,#pressbut").removeClass('aktiv');
    });

    $("#refbut").click(function(){
        $("#ref").fadeIn(2000);
        $("#home,#work,#pro,#about,#contact,#press,#news,#newsweiss").hide();
        $("#refbut").addClass('aktiv');
        $("#workbut,#probut,#aboutbut,#contactbut,#pressbut").removeClass('aktiv');
    });

    $("#aboutbut").click(function(){
        $("#about").fadeIn(2000);
        $("#home,#work,#pro,#ref,#contact,#press,#news,#newsweiss").hide();
        $("#aboutbut").addClass('aktiv');
        $("#workbut,#probut,#refbut,#contactbut,#pressbut").removeClass('aktiv');
    });

    $("#contactbut").click(function(){
        $("#contact").fadeIn(2000);
        $("#home,#work,#pro,#ref,#about,#press,#news,#newsweiss").hide();
        $("#contactbut").addClass('aktiv');
        $("#workbut,#probut,#refbut,#aboutbut,#pressbut").removeClass('aktiv');
    });

    $("#pressbut").click(function(){
        $("#press").fadeIn(2000);
        $("#home,#work,#pro,#ref,#about,#contact,#news,#newsweiss").hide();
        $("#pressbut").addClass('aktiv');
        $("#workbut,#probut,#refbut,#aboutbut,#contactbut").removeClass('aktiv');
    });
        
    $("#impbut,#impressum").click(function(){
        $("#impressum").toggle();
    });
    
    $("#toggler").mouseover(function(){
        $("#content,#header").hide();
    });
    $(".lightbox").click(function(){
        $("#content,#header").hide();
    });
    $("#toggler").mouseout(function(){
        $("#content,#header").show();
    });	
    $("#zeigeshow,#closeshow,#overlay1").click(function(){
        $("#show,#content,#header,#toggler,#overlay1,#bildflaeche").toggle();
    });
    $("#zeigeshow").click(function(){
		var s1 = new SWFObject("lib/mediaplayer.swf","mediaplayer","600","480","8");
			s1.addParam("allowfullscreen","true");
			s1.addVariable("showdownload","false");
			s1.addVariable("showdigits","true");
			s1.addVariable("showicons","true");
			s1.addVariable("showvolume","true");
			s1.addVariable('autostart','true');
			s1.addVariable("width","600");
			s1.addVariable("height","480");
			s1.addVariable("file","http://www.arabesque-production.ch/media/showreel_kl.flv");
			s1.write("container");
	});
    $("#closeshow,#overlay1").click(function(){
		var s1 = new SWFObject("lib/mediaplayer.swf","mediaplayer","600","480","8");
			s1.addParam("allowfullscreen","true");
			s1.addVariable("showdownload","false");
			s1.addVariable("showdigits","true");
			s1.addVariable("showicons","true");
			s1.addVariable("showvolume","true");
			s1.addVariable('autostart','false');
			s1.addVariable("width","600");
			s1.addVariable("height","480");
			s1.addVariable("file","http://www.arabesque-production.ch/media/showreel_kl.flv");
			s1.write("container");
    });
});

function change_bgimg() {
	$.get("lib/get_picture.php", function(data){
  		$("#bildflaeche img").attr("src", "media/bg/" + data);
	});
}

