jQuery(document).ready(function(){  
   			
//Document's ready. Let's Do This.

	//Video Panel
	$('#video').show();
	$('.vid-tog a').toggle(function (){
		$('#video').slideToggle();
		}, function() {
		$('#video').slideToggle();
	});

	$('#footer img').fadeTo(0, .6);
	$('#footer img').hover(function (){
		$(this).fadeTo(150, 1);
		}, function() {
		$(this).fadeTo(250, .6);
	});

	//Open External Links In New Window
	$('a').each(function() {
	   var a = new RegExp('/' + window.location.host + '/');
	   if(!a.test(this.href)) {
	       $(this).click(function(event) {
	           event.preventDefault();
	           event.stopPropagation();
	           window.open(this.href, '_blank');
	       });
	   }
	});

	
// All done.
			
});