(function ($) {
	/*-------------------------------------------------------------------*/
	/* Video popup
	/*-------------------------------------------------------------------*/
	$(function () {
		$('.videolink').live('click', function (event) {
			event.preventDefault();
			var valid = false;
			var popurl = "";
			if(this.nodeName.toLowerCase() === 'img') {
				popUrl = $(this).parent().attr('href') + '/pop/true';
				valid = true;
			}
			if(this.nodeName.toLowerCase() === 'a') {
				popUrl = $(this).attr('href') + '/pop/true';
				valid = true;
			}
			if(valid) {
				lister.showwithpop($(this),popUrl,'movie-list',true);
				$('body,html').animate({scrollTop:0},800);
			}
		});
	});
})(jQuery)
