function changeLocation(menuObj)
{
   var i = menuObj.selectedIndex;

   if(i > 0)
   {
      window.location = menuObj.options[i].value;
   }
}

$(document).ready(function() {
	$('#banner-rotator').cycle({
	fx: 'fade',
	pause: 1,
	cleartype: true,
	cleartypeNoBg: true,
	timeout: 5000
	});
});
