$(document).ready(function() {
    $('#rotator').cycle({
		fx: 'fade'
	});
});
$(function(){
	$("a.gtfirst").click(function(){
		$('#rotator').cycle(0); 
		$('#rotator').cycle('pause');
    	return false; 
	});
	$("a.gtsecond").click(function(){
		$('#rotator').cycle(1);
		$('#rotator').cycle('pause');
    	return false; 
	});
	$("a.gtthird").click(function(){
		$('#rotator').cycle(2);
		$('#rotator').cycle('pause'); 
  		return false; 
	});
}); 
