
var loaded = false;
var txtthere = false;

$(document).ready(function()
{
	 

	$("#seminfo").hide();	
     $("#contact1").hide();
     $("#contact2").hide();
     $("#contact3").hide();
	 
	$("#video").hide();	
	$("#movie").hide();	
	$("#bg").hide();	
	$("#text").hide();	

   $("a.info").click(function(){ 
							  
     $("#seminfo").fadeTo(0,0.92);
     $("#seminfo").animate({ height: 'show', opacity: 'show' }, 1000);
	 
	 if($(this).attr("name") == "sem1")
	 {
     	$("#contact1").show();
		 $("#tinfo").html("<img src='seminare/seminar1.jpg' alt='' />");
	 }
		 
	 if($(this).attr("name") == "sem2")
	 {
     	$("#contact2").show();
		 $("#tinfo").html("<img src='seminare/seminar2.jpg' alt='' />");
	 }
		 
	 if($(this).attr("name") == "audio")
	 {
     	$("#contact3").show();
		 $("#tinfo").html("<img src='seminare/audio.jpg' alt='' />");
	 }
							
	//$("#bg").fadeTo(0,0);
	 //$("#bg").show();	
     //$("#bg").fadeTo(1000,0.8);	
						  
	 });
   
   $("a.close").click(function(){ 
							  	
     $("#seminfo").animate({ height: 'hide', opacity: 'hide' }, 1000);	
     $("#contact1").hide();
     $("#contact2").hide();
     $("#contact3").hide();
	//$("#seminfo").hide();	
     //$("#bg").hide(1000);	
							  });
   
   
   $("a.vid").click(function(){	
							  
	 loaded = false;
	 txtthere = false;
	 	 
	 
	 $("#text").hide();	
	 $("#movie").html('<img src="gif/loader.gif" alt="" border="0" />');	 
	 $("#movie").show();
     $("#video").animate({ height: 'show', opacity: 'show' }, 1000);
	 $("#bg").fadeTo(0,0);
	 $("#bg").show();	
     $("#bg").fadeTo(1000,0.8);
	 
	 window.setTimeout('$("#movie").load();', 1500);
	 window.setTimeout('$("#movie").click();', 1000);
	 
	 $("#description").html("<strong>Sinnbild</strong><br/>Audio-Visuelle Kompositionen<br/>Ausschnitte aus Portrait- und Biografie-Filmen<br/>L&auml;nge: 4:26 Min"); 
	 
   });
   

   $("#closevid").click(function(){
	  if(loaded)
	  {
		$("#movie").hide();	
		 $("#video").animate({ height: 'hide', opacity: 'hide' }, 'slow');
		 $("#bg").fadeTo(1000,0);
		 window.setTimeout('$("#bg").hide();', 1000);
	  }
		
   });
   
   $("#movie").load(function(){
							 
	$("#movie").show();	
	var s1 = new SWFObject("swf/mediaplayer.swf","mediaplayer","400","320","7");
	s1.addParam("allowfullscreen","true");
	s1.addVariable("width","400");
	s1.addVariable("height","320");
	s1.addVariable("showstop","true");
	s1.addVariable("file","../films/sinnbild.flv");
	s1.addVariable("image","films/sinnbild.jpg");
	s1.write("movie");	
	loaded = true;
	 
	 
	 });
		
   $("#movie").click(function(){	
							  if(!txtthere)
							  {
	 $("#text").fadeTo(0,0);
	 $("#text").show();	
     $("#text").fadeTo(1000 , 1);	
	 txtthere = true;
							  }
	 });	
 });

