// JavaScript Document
//External Links

$(document).ready(function () {
	
	$('a[rel="external"]')
		.click(function() { window.open($(this).attr('href')); return false; });
		
	$('#contact').css('opacity', '0.11')
		.hover(
			function() {
				$(this).fadeTo('fast', 0.9);
			},
			function() {
				
				$(this).fadeTo('fast', 0.11)
				
			}); 
							
});