$(document).ready(function(){
	$('.lb').fancybox();
	//$("a.lbAjax").fancybox({ 'hideOnContentClick': false });
	//$('.boxen').boxen({width: 874,height: 545}); //848x480 movie res
	$('.boxen').boxen({width: 883,height: 555}); //848x480 movie res

	$('.boxen').mouseover(function(){
		$('div:first', this).addClass('hovered');
	}).mouseout(function(){
		$('div:first', this).removeClass('hovered');
	});
	
	$('a.mp3').flash(
	  { src: '/template/core/js/singlemp3player.swf', height: 20, width: 200, wmode: 'transparent' },
	  { version: 7 },
	  function(htmlOptions) {
	      $this = $(this);
	      htmlOptions.flashvars.file = $this.attr('href');
	      $this.before($.fn.flash.transform(htmlOptions));						
	  }
	);	
	
	
	//$('a.media').media();
	
 });