function startAudioPlayer(o,file) {
	
	var flashvars = {file:'/demo/audio/'+file+'.mp3',
			         volume:60}; 
	
	var params = {allowfullscreen:'false',
			      allowscriptaccess:'always',
			      quality:'low'};
	
	var attributes = {id:file+'player',
			          name:file+'player'};
	
	swfobject.embedSWF('/swf/player45.swf', o, '450', '20', '9.0.0', false, flashvars, params, attributes);
		
}

function switchItem(i) {
	
	StickyWin();
	$('#StickyWin_td').ready(function () { 
		
		var flashvars = {file: '/demo/reels/'+i+'.flv',
				         image: '/demo/reels/'+i+'.jpg',
				         playlist: 'none',
				         autostart: 'false',
				         stretching: 'fill',
		                 volume: '60'}; 

        var params = {allowscriptaccess: 'always',
		              quality: 'high'};

        var attributes = {name: i+'player'};

        swfobject.embedSWF('/swf/player45.swf', 'video', '450', '360', '9.0.0', false, flashvars, params, attributes);
		
	});
	
}


function showPic(file,w,h) {
	var i='<img src="/demo/pic/'+file+'.jpg" style="width: '+w+'px; height: '+h+'px;" />';
	
	StickyWin();
	$('#StickyWin_td').html(i);
	
}
