$(document).ready(function(){
    
    //External Links
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});
    
    setInterval ( "adSwap()", 10000 );
	  			
});

function adSwap()
{
	if ($(".ad:last").hasClass("showing"))
	{
		$(".ad:last").fadeOut("slow", function () {
			$(this).removeClass("showing");
			$(".ad:first").fadeIn("slow");
			$(".ad:first").addClass("showing");
		});
	}
	else
	{
		$(".ad:visible").fadeOut("slow", function () {
			$(this).removeClass("showing");
			$(this).next(".ad").fadeIn("slow");
			$(this).next(".ad").addClass("showing");
		});
	}
}
