var rO = $;

jQuery(document).ready(function(rO){

rO('#imagery').show();
//Find which browser and apply correct script
rO(function () {
    if (rO.browser.msie) {
		rO('#imagery')
		.cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			cleartypeNoBg: true
			//speed: 0
		});
	}
	else {
		rO('#imagery')
		.cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			cleartypeNoBg: true
		});
	  }	  
 });
 
 
});
