$(document).ready(function() {
	
	$('ul.sf-menu').superfish({
		autoArrows: false,
		delay: 600
	});
	
	$("a[rel=ext]").attr('target', '_blank');
	
	$(".stories").hover(function() {
		this.src = this.src.replace("_bw","_color");
	 },
	 function() {
		this.src = this.src.replace("_color","_bw");
	});

});
