$(document).ready(function() {

	$('ul#slides').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		width: '100%',
		height: '100%',
		fit: true,
		cleartypeNoBg:  true,
		timeout: 5000, // default = 4000
		speed: 2000, // default = 1000
		pause:         1,     // true to enable "pause on hover"
		pager:  '.pager',
		pagerAnchorBuilder: function(index, el) {
        return '<a href="#"> </a>'; // whatever markup you want
		}
	});
	
	$('ul#office_slides').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		width: '100%',
		height: '100%',
		fit: true,
		pause:         1,     // true to enable "pause on hover"
		timeout: 5000, // default = 4000
		speed: 2000 // default = 1000
	});
	
});





