$(document).ready(function() {

	$("#photoid").change(function() {
		$("#uplid").val($("#photoid").val());
	});		

	
	$(function() {
		$('#gallery a').lightBox({fixedNavigation:true});
	});
	
	// Embed the player SWF: 
	var flashvars;
	
                  swfobject.embedSWF
                  (
                                 "/img/feb_2012/februar.swf", 
                                 "VideoPlayer", 
                                 "100%", 
                                 "700px", 
                                 "10.1.0", 
                                 "/img/swf/expressInstall.swf", 
                               flashvars,  
                   /* parameters, */ 
                               {
                        allowFullScreen: "true",
                        //Wichtig, damit Kommunikation mit Aktionscript funktionieren kann
                        allowScriptAccess: "always",
                        //Wichtig fuer transparenten Hintergrund der Flex-Application 
                        wmode: "transparent"
                    }, 
                               {
                                name: "VideoPlayer"
                  });    

	
	
});


