$(function(){
  $("img").lazyload({placeholder : "/js/blank.gif"});
  $('#sfooter').constantfooter();
  $(".fancybox_iframe").fancybox({width: 800, height: 600, type: 'iframe','scrolling' : 'no'});
  $(".fancybox_swf").fancybox({width: 800, height: 600, type: 'swf','scrolling' : 'no'});
  $('.fancybox').fancybox();
  $('#event_search_result_wrapper').hide();
	
 
	
	$('.event_video').each(function(){
		$(this).html('<img src="'+getScreen($(this).attr('href'))+'" />');
		$(this).click(function(){
			$.fancybox({
				'autoScale'     	: true,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'href'				: 'http://www.youtube.com/embed/' + youtube_vid($(this).attr('href')),
				'type'				: 'iframe'
			});
			return false;
		});
	});


});

