$(function()
{
	
	$('.image_cycle').cycle();
	
	$('#specialsCycle').cycle({ 
	    fx:     'scrollHorz', 
	    timeout: 6000,
	    next:   '#nextBtn', 
	    prev:   '#prevBtn'
	});
	
	$('#pauseBtn').toggle(function() {
			$('#pauseBtn').addClass('paused');
        	$('#specialsCycle').cycle('pause');	
        }, function() {
        	$('#pauseBtn').removeClass('paused');
        	$('#specialsCycle').cycle('resume', true);
    }); 
	
	var totalHeight = 0;
	$('#specialsCycle').children().each(function(){
	    if ($(this).outerHeight() > totalHeight) {
	    	totalHeight = $(this).outerHeight();
	    }
	});
	
	$('#specials').height( totalHeight + 102 );

	
});
