$(document).ready(function(){

	$('a[rel=external]').click(function(){		
		window.open(this.href);
		
		return false;	
	});
	

	
	
	$('.cw2 .w2 .i1 img').hover(function(){
		$(this).attr('src', 'img/c3b.gif');
	}, function(){
		$(this).attr('src', 'img/c3a.gif')
	});
	
	$('.cw2 .w2 .i2 img').hover(function(){
		$(this).attr('src', 'img/c4b.gif');
	}, function(){
		$(this).attr('src', 'img/c4a.gif')
	});	
	
	$('.cw2 .w2 .i3 img').hover(function(){
		$(this).attr('src', 'img/c5b.gif');
	}, function(){
		$(this).attr('src', 'img/c5a.gif')
	});
	

});
