﻿$(document).ready(function () {

    $('#slideshow ul').cycle({
        fx: 'fade',
        timeout: 10000,
        startingSlide: Math.floor(Math.random() * 5),
        pager:  '#slideshow-nav'
    });

    $("#tabs").tabs();

    $('#flip>div>ul').jcoverflip({ current: 2 });

    $('#HBUSERNAME').keypress(function (e) {
        if (e.which == 13) {
            $(this).blur();
            $('#Coastnet1_ImageButton1').focus().click();
        }
    });




});	
