$(document).ready(function(){
	$(function() {
		$('a[rel*=external]').click( function() {
			window.open(this.href);
			return false;
		});
	});
	$("p:last-child").css('margin-bottom', '0');
	$("#gallery a:first-child img").css('margin-left', '0');
	
	window.rotate = 1;
  window.images = $("#gallery a img").length;
  window.index = 0;
  
  setTimeout("rotate_image()",3000);  
              
	$("#gallery a").hover(function(){
	  rotate = 0;
		$("#image img").replaceWith($(this).html());
  	});
});

function rotate_image ()
{
  if(rotate) {
    if(index<images) {
      index++;
    } else { index = 1; }
    $("#image").html($("#gallery a").eq(index-1).html());
    setTimeout("rotate_image()",3000);   	
  }   
}
