/* VIDEO */
function activateVideos(){
		var vid_w = 620;
		var vid_h = 400;
		var player_url = URL_BASE + "/graphics/video/cstm_player.swf";
		var playOnStart = "false";
		var playOnStart = "false";
		var autoHideOther = "false";
		var autoHideVideoControls = "false";
		var onStartShowControls = "true";
		var startVolume = "70";
		var fullVideoScale = "true";
		var showPlayButton = "true";
		var share = "false";
		$(".youtubevideo").each(function(){
			var code = $(".code", this).html();
			$(this).attr('id', 'video'+code);
			if((BrowserDetect.OS != 'iPhone/iPod')&&(BrowserDetect.OS != 'iPad')){
				var code = $(".code", this).html();
				var MediaLink2 = "http://www.youtube.com/watch?v="+code;
				var image = "";
				
				$(this).attr('id', 'video'+code);
				$(this).html('<object data="'+player_url+'" id="myplayer" type="application/x-shockwave-flash" width="'+vid_w+'" height="'+vid_h+'"><param value="#000000" name="bgcolor"><param value="true" name="allowfullscreen"><param value="opaque" name="wmode"><param value="playOnStart='+playOnStart+'&amp;startVolume='+startVolume+'&amp;autoHideOther='+autoHideOther+'&amp;autoHideVideoControls='+autoHideVideoControls+'&amp;onStartShowControls='+onStartShowControls+'&amp;fullVideoScale='+fullVideoScale+'&amp;showPlayButton='+showPlayButton+'&amp;share='+share+'&amp;MediaLink2='+MediaLink2+'" name="flashvars"><embed src="'+player_url+'?playOnStart='+playOnStart+'&amp;startVolume='+startVolume+'&amp;autoHideOther='+autoHideOther+'&amp;autoHideVideoControls='+autoHideVideoControls+'&amp;onStartShowControls='+onStartShowControls+'&amp;fullVideoScale='+fullVideoScale+'&amp;showPlayButton='+showPlayButton+'&amp;share='+share+'&amp;MediaLink2='+MediaLink2+'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="'+vid_w+'" height="'+vid_h+'"></embed></object>');
			}else{
				$(this).html('<object width="'+vid_w+'" height="'+vid_h+'"><param name="movie" value="http://www.youtube.com/v/'+code+'"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/'+code+'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="'+vid_w+'" height="'+vid_h+'"></embed></object>');
			}
		})
		
		$(".vimeovideo").each(function(){
			var code = $(".code", this).html();
			$(this).html('<object width="'+vid_w+'" height="'+vid_h+'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id='+code+'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id='+code+'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+vid_w+'" height="'+vid_h+'"></embed></object>');
		})
		
		$(".siteplayer").each(function(){
					  $(this).jwplayer({
						flashplayer: window.BASE_URL+'/site/ra/css/images/flash/player.swf',
						skin: window.BASE_URL+'/site/ra/css/images/flash/five/five.xml'
					  });
		});
}
$(document).ready(function() {
	activateVideos();
})

