// JavaScript Document
// Description: AR247 Custom Scripts
// Author: Lu Magdaleno
// Date: 12/2009

function homeRotator(){
	$('#homeRotator').cycle({ 
		fx:    'fade', 
		timeout:'12000',
		pause:  false 
	});
}
function accoladeRotator(){
	$('#accoladeRotator').cycle({ 
		fx:    'fade', 
		timeout:'12000',
		pause:  false 
	});
}

function anecdoteRotator(){
	$('#anecdoteRotator').cycle({ 
		fx:    'fade', 
		timeout:'12000',
		pause:  false 
	});
}

function kudosRotator(){
	$('#kudosRotator').cycle({ 
		fx:    'fade', 
		timeout:'12000',
		pause:  false 
	});
}

//Doc Ready

$(document).ready(function(){
   if(document.getElementById('homeRotator')){
	   homeRotator();
	}
	if(document.getElementById('accoladeRotator')){
	   accoladeRotator();
	}
	if(document.getElementById('anecdoteRotator')){
	   anecdoteRotator();
	}
	if(document.getElementById('kudosRotator')){
	   kudosRotator();
	}
 });


