// JavaScript Document
var timer = setInterval( showDiv, 5000);
var counter = 2;


function showDiv() {
	if (counter == 0) { counter++; return; }
		$('div','#sponsor-title')
			.stop()
      .hide()
      .filter( function() { return this.id.match('sponsors-' + counter); })   
      .show();
    counter == 3? counter = 0 : counter++; 
}

var animator = function(el, time, dir) {  

};
	
$("#sponsor-box A").live("mouseover", function() {  

});
