﻿$(function() {
    $('#pause').click(function() { $('#rotate').cycle('pause'); return false; });
    $('#play').click(function() { $('#rotate').cycle('resume'); return false; });
    
    $('#banner_rotate').hover(
        function() { $('#controls').fadeIn(); },
        function() { $('#controls').fadeOut(); }
    );

    		$('#rotate')
    		.before('<div id="pager">') 
			.cycle({ 
			    fx:     'fade', 
			    speed:  'slow', 
			    timeout: 6000, 
			    pager:  '#pager'
			});
			
    	});
