// JavaScript Document

$(document).ready(function () {
		   
	
	$('.blue img').animate( {
	"opacity":.2
 });
	
	$('.blue img').hover(function(){
			$(this).stop().animate ( { "opacity": 1});
					
		}, 	function() {
		$(this).stop().animate ({ "opacity": .1});

		   });
	
	 $("a[rel=external]").attr('target', '_blank');

	
	});


							
							
		