// Rosebowl JS

$.backstretch("i/bg/rotator.php");
$().ready(function () {
    $('#backstretch-wrap').hide().fadeIn(2000);
    $('#coda-slider-1').codaSlider({
        dynamicArrows: true,
        dynamicTabs: false,
        autoSlide: true,
        autoSlideInterval: 4000,
        autoSlideStopWhenClicked: true,
        autoHeight: false
    });
    $('.sponsors ul').innerfade({
        speed: 1000,
        timeout: 5000,
        type: 'sequence',
        containerheight: '95px'
    });
});



$().ready(function () {
    $("#promo_img img, .promo_img img").css("opacity","0.9");
    $("#promo_img img, .promo_img img").mouseover(function () {
        $(this).animate({
            opacity: "1.0",
			marginTop: "4px"
        }, 450);
    }).mouseout(function () {
        var selected = "#" + $(this).attr("id");
        $(this).animate({
            opacity: "0.9",
			marginTop: "0px"
        }, 250);
    });
});
