/* <![CDATA[ */
$(function() {
    $('#pause').click(function() { $('#slides').cycle('pause'); return false; });
    $('#play').click(function() { $('#slides').cycle('resume'); return false; });
    
    $('#highlights').hover(
        function() { $('#controls').fadeIn(); },
        function() { $('#controls').fadeOut(); }
    );
    
    $('#slides').cycle({
        fx:     'scrollHorz',
        speed:   400,
        timeout: 3000,
        next:   '#next',
	    cleartype:  true,
	    cleartypeNoBg:  true,
        prev:   '#prev',
		pause: 1
    });
});



/* ]]> */
