/**
 *	Main.js
 */
(function($){
	$(function(){
		$("pre").attr("name","code")
		dp.SyntaxHighlighter.HighlightAll('code');

		$('.articleHeader').each(function(){
			var $video = $(this).find('.youtube');
			var $videoBtn = $(this).find('.videoBtn');
			$videoBtn.toggle(
				function(){
					$video
						.animate(
							{
								'height': '365px',
								'margin-bottom': '20px'
							},
							function(){
								$video.css({
									'overflow':'hidden',
									'display':'block',
									'margin-bottom': '20px'
								})
							}
						)
					.end();
					$videoBtn.html("Hide Video");
				},
				function(){
					$video
						.animate(
							{
								'height': '25px',
								'margin-bottom': '20px'
							},
							function(){
								$video.css({
									'overflow':'hidden',
									'display':'block',
									'margin-bottom': '20px'
								})
							}
						)
					.end;
					$videoBtn.html("Show Video");
				}
			);
		});
		$(".individual .videoBtn").click();
	})
})(jQuery);