$(document).ready(function(){
	// open some links in new window
	$("a[rel$='external'], #sidebar_ad p a, .sidebar_conference a").click(function(){
	     this.target = "_blank";
	});
	
	// photo info slider
	$("#photo_slider").hover(function(){
		$(this).stop().animate({"left": "600px"}, 'slow', 'easeOutCubic');
		}, function(){
			$(this).stop().animate({"left": "900px"}, 'slow', 'easeInCubic');
	});
	
	// fade in color photo, then fade back to b+w version
	$("#photo_feature").hover(function(){
		$("#bw_photo").stop().animate({"opacity": "0"}, "slow");
	}, function(){
		$("#bw_photo").stop().animate({"opacity": "1"}, "slow");
	});
	
	// tweet stylie
	$("#latest_tweets li:odd").css("background", "#fff");;

}); // end doc ready