$(document).ready(function(){
	$('img.logo').hover(
		function() { $(this).fadeTo('fast',0.7);},
		function() { $(this).fadeTo('fast',1);}
	);
});

// rel external to replace target blank
$(document).ready(function(){
	$('a[href^=http]').click( function() {
		window.open(this.href);
		return false;
	});
});
