/*
_________________________________________________________________________________________
DOM READY */

window.addEvent('domready',function()
{
	initFlash();
	initShadowbox();
});

function initShadowbox()
{
	
	Shadowbox.init({
		
	    skipSetup: true,
	    players: ["swf", "html" ]
	    
	});
	
}

function initFlash()
{
	var flashvars = {};
	var params = { wmode: "transparent" };
	var attributes = {};
	
	swfobject.embedSWF( "uvhitelselector.swf", "flashcontent", "793", "172", "9.0.0", "expressInstall.swf", flashvars, params, attributes );
}

function loadFlashMovie( param )
{
	if ( param == "01" )
	{
		
		Shadowbox.open({
	        content:    'http://projects.dropout.hu/uvhitelvideo/videoplayer/uvhitelvideoplayer.swf',
	        player:     "swf",
	        title:      "",
	        width:      480,
	        height:     270,
	        options: 
	        {
                flashVars: 
                {
	                video: "01kavezo"
                },
                flashParams:
                {
                	allowfullscreen: true
                }
                
            }  
    	});

		

	}
	else if ( param == "02" )
	{
		
		Shadowbox.open({
	        content:    'http://projects.dropout.hu/uvhitelvideo/videoplayer/uvhitelvideoplayer.swf',
	        player:     "swf",
	        title:      "",
	        width:      480,
	        height:     270,
	        options: 
	        {
                flashVars: 
                {
	                video: "02boltos"
                },
                flashParams:
                {
                	allowfullscreen: true
                }
                
            } 
    	});		
    	
		
	}
	else if ( param == "03" )
	{
		
		Shadowbox.open({
	        content:    'http://projects.dropout.hu/uvhitelvideo/videoplayer/uvhitelvideoplayer.swf',
	        player:     "swf",
	        title:      "",
	        width:      480,
	        height:     270,
	        options: 
	        {
                flashVars: 
                {
	                video: "03targoncas"
                },
                flashParams:
                {
                	allowfullscreen: true
                }
                
            } 
    	});		
    	
		
	}
	
	
}

function closeShadowBox()
{
	Shadowbox.close();
}