var Videos = {
	init : function() {		
		$('.sidebar-videos ul li a').live('click', function(e) {																	
			e.preventDefault();	
			e.stopPropagation();	
			Videos.animar($(this));
		});
	},
	
	animar : function(el) {
		
		var $_this = el;				
		
		if( !$.browser.msie ) {
			$.blockUI.defaults.overlayCSS.backgroundColor = '#000';
			$.blockUI.defaults.overlayCSS.opacity = '0.2';
			$_this.parent().block({
				message : '<img src="' + urlBase + 'themes/default/img/loading.gif" align="absmiddle" />',
				css : { 
					'backgroundColor' : 'transparent',
					'border' : 'none'
				}
			});
		}
		
		$('.movie .player').find('*').remove();
		
		$('.movie .player').html('<object width="571" height="344"><param name="movie" value="' + $_this.attr('href') + '"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="' + $_this.attr('href') + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="571" height="344"></embed></object>');
		
		if( !$.browser.msie ) {
			$_this.parent().unblock();
		}
	}

}

jQuery(Videos.init);