// JavaScript Document

/* HERO */
jQuery('#hero').cycle({
    fx:      'scrollHorz',
    speed: 500,
	timeout: 7000,
    easeIn:  'easeinout',
    easeOut: 'easeinout',
    delay:   -2000,
	next: '#next1', 
	prev: '#prev1'
});

/*
if (currDay > 4){
	currDay = 4;
}
*/

/* SPECIALS */
var titles = ['SUN', 'MON', 'TUES', 'WED', 'THURS', 'FRI', 'SAT'];
jQuery('.specials_slideshow').cycle({
    fx:      'scrollVert',
	speedIn:  500,
	speedOut: 500,
	easeIn:  'easeinout',
	easeOut: 'easeinout',
	timeout: 0, 
    pager:  '#specials_nav',
	startingSlide: currDay,  // ZERO-BASED (IE: 0 = "SUNDAY")
    pagerAnchorBuilder: function (index) {
        return '<a href="#">' + titles[index] + '</a>';
    }
});

/* EXCLUSIVES */
var ex_titles = ['1', '2', '3', '4'];
jQuery('.exclusives').cycle({
    fx:      'scrollVert',
	speedIn:  500,
	speedOut: 500,
	easeIn:  'easeinout',
	easeOut: 'easeinout',
	delay:   -1000,
    pager:  '#exclusives_nav',
	startingSlide:   0,  // ZERO-BASED (IE: 0 = "1")
    pagerAnchorBuilder: function (index) {
        return '<a href="#">' + ex_titles[index] + '</a>';
    }
});
