//Global Javascript file
$(document).ready(function(){
	
//Show-Hide Script for Homepage Videos

			//Video 2
			$('a.videothumb_2').click(function(){
				$('div.video_1, div.video_3').hide();
				$('a.videothumb_1, a.videothumb_3').removeClass('selected');
				
				$('div.video_2').show();
				$(this).addClass('selected');
			return false;
			});

			//Video 3
			$('a.videothumb_3').click(function(){
				$('div.video_1, div.video_2').hide();
				$('a.videothumb_1, a.videothumb_2').removeClass('selected');

				$('div.video_3').show();
				$(this).addClass('selected');
			return false;
			});

			//Video 1
			$('a.videothumb_1').click(function(){
				$('div.video_2, div.video_3').hide();
				$('a.videothumb_2, a.videothumb_3').removeClass('selected');
				
				$('div.video_1').show();
				$(this).addClass('selected');
			return false;
			});
	}
);//End Document
