jQuery(document).ready(function($){
	$('a[rel=external]').click(function(e){
    	window.open($(this).attr('href'));
		  e.preventDefault();
      e.stopPropagation();
	});
  $('.gallery img').removeAttr('title');
	$('.gallery').cycle({speed:300});
});