 $(document).ready(function(){
   	 var current = 1;
  	$.timer(7000, function (timer) {
  		switch(current){
				case 1:
					$("#rotatingHdr").fadeOut('slow', function(){
						$("#rotatingHdr").html('<img src="i/rotatingHdr2.jpg" alt=" " width="770" height="32" border="0" />');
						$("#rotatingHdr").fadeIn('slow');
					});
				break;
				case 2:
					$("#rotatingHdr").fadeOut('slow', function(){
						$("#rotatingHdr").html('<img src="i/rotatingHdr3.jpg" alt=" " width="770" height="32" border="0" />');
						$("#rotatingHdr").fadeIn('slow');
					});
				break;
				case 3:
					$("#rotatingHdr").fadeOut('slow', function(){
						$("#rotatingHdr").html('<img src="i/rotatingHdr1.jpg" alt=" " width="770" height="32" border="0" />');
						$("#rotatingHdr").fadeIn('slow');
					});
				break;
				default:
					$("#rotatingHdr").fadeOut('slow', function(){
						$("#rotatingHdr").html('<img src="i/rotatingHdr1.jpg" alt=" " width="770" height="32" border="0" />');
						$("#rotatingHdr").fadeIn('slow');
					});
			}
			current++;
			if(current == 4){
				current = 1;
			}
  	});
		
	
 });