$(document).ready(function() {
//open links in new window
$("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");  


$('#whatcouldhappen li a.proceed').visited().removeClass('proceed').addClass('visited');


var numberOfBanner = $('.topBanner').children().length;

	if(numberOfBanner > 1){ 
	
		
	//topBanner img fadein fade out
	$('.topBanner img:gt(0)').hide();
    setInterval(function(){
      $('.topBanner :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('.topBanner');
         },  5000);

	
	
	}




});
