$(document).ready(function(){
	
	/* Set image rollovers */
	jQuery.each($('#content > img'), function(image){

		$(this).mouseover(function(){
		});

		$(this).mouseout(function(){
		 });
		
	});
	
	/* Set external links */
	$("a[rel*='external']").attr("target","_blank");

});


