﻿/// <reference path="../jquery-1.3.2.js" />
/// <reference path="../jquery.corner.js" />
/// <reference path="../jquery.cycle.all.js" />

$(document).ready(function() {


    $('#s1').fadeIn('slow', function() {
        $('#s1').cycle({
            fx: 'fade',
            speed: 250,
            timeout: 7000,
            pause: 1,
            speedIn: 1500,
            autostop: 1,
            autostopCount: 150,
            requeueTimeout: 250

        });
    });
    $('#s2').fadeIn('slow', function() {
        $('#s2').cycle({
            fx: 'fade',
            speed: 250,
            timeout: 7000,
            pause: 1,
            speedIn: 1500,
            autostop: 1,
            autostopCount: 150,
            requeueTimeout: 250

        });
    });
    $('.corners2Lrg').corner();

});