dojo.require("dojox.widget.FisheyeLite");
dojo.require("dijit.form.TextBox");
dojo.require("dijit.form.Button");
dojo.require("dojox.image.Lightbox");

// Menu-wackeln
dojo.addOnLoad(function(){   
    dojo.query("div.hauptNaviGation").forEach(function(n){
      new dojox.widget.FisheyeLite({
	     properties: {
          height:1.2
        }
	 },n);
    });
});

//Sub Menu-wackeln	
dojo.addOnLoad(function(){   
    dojo.query("div.txtE1").forEach(function(n){
      new dojox.widget.FisheyeLite({
	     properties: {
    	  paddingLeft:1.4
        }
	 },n);
    });
    dojo.query("div.txtE2").forEach(function(n){
          new dojox.widget.FisheyeLite({
    	     properties: {
        	  paddingLeft:1.1
            }
    	 },n);
    });
});

function showVideo(id){
	var iframe;
	iframe = frames[0];
	iframe.location.href = 'http://www.videowerkstatt.net/video/info-tv/showVideo.php?s=1&id='+id;
	setAktuellesVideo(id);
}

function showVideoPopUp(id){
	MM_openBrWindow(	'http://www.videowerkstatt.net/video/info-tv/showVideo.php?id='+id,
						'onlineStream',
						'resizable=yes,width=550,height=700');
}

var aktuellesVideo = -1;

function setAktuellesVideo(id){
	aktuellesVideo = id;
}

function showVideoPopUpAktual(){
	if (aktuellesVideo!=-1){
		showVideoPopUp(aktuellesVideo);
	}
}