(function($) {
	Drupal.behaviors.pagerTop = {
		attach: function(context, settings) {
			if ($('.pager').length > 0 && $('.node-type-people').length == 0 && $('.page-blog').length == 0) {
				$('.pager a').click(function() {
					$('html, body')
					.delay(500)
					.animate({ scrollTop:0 }, '300');
				});
			}
		}
	}
})(jQuery);;
(function($) {
	Drupal.behaviors.showYouTube = {
		attach: function(context, settings) {
			if ($('#youtube-video').length > 0) {
				$('#youtube-video').click(function() {
					var src = $(this).attr('href');
					var img = $(this).children('img');
					var width = img.attr('width');
					var height = img.attr('height');
					$(this).replaceWith('<iframe src="' + src + '" width="' + width + '" height="' + height + '" frameborder="0" wmode="opaque"></iframe>');
					return false;
				});
			}
		}
	}
})(jQuery);;

