﻿$(function() {
    $('ul li#tab1').mouseover(function() {
                $(this).addClass('active');
                $('#tabber_content1').removeClass('hide');
                $('ul li#tab2,ul li#tab3').removeClass('active');
                $('#tabber_content2,#tabber_content3').addClass('hide');
            });
            
            $('ul li#tab2').mouseover(function() {
                $(this).addClass('active');
                $('#tabber_content2').removeClass('hide');
                $('#tab1,#tab3').removeClass('active');
                $('#tabber_content1,#tabber_content3').addClass('hide');
            });
            
            $('ul li#tab3').mouseover(function() {
                $(this).addClass('active');
                $('#tabber_content3').removeClass('hide');
                $('#tab1,#tab2').removeClass('active');
                $('#tabber_content2,#tabber_content1').addClass('hide');
            });
            
            $('#s3').cycle({ 
                fx:    'fade', 
                random: 0,
                speed:  4000,
                delay:  -2000,
                pause:  1 
            });
            
            $('img#instant_approval').mouseover(function() {
                $(this).attr('src', BASE_DIR + '_img/v2/btn_applyonline_v2_over.gif');
            });
            
            $('img#instant_approval').mouseout(function() {
                $(this).attr('src',BASE_DIR + '_img/v2/btn_applyonline_v2.gif');
            });
            
            $('img#howtogetstarted, #retailerinfo').mouseover(function() {
                $(this).attr('src',BASE_DIR + '_img/v2/btn_learnmore_over.gif');
            });
            
            $('img#howtogetstarted, img#retailerinfo').mouseout(function() {
                $(this).attr('src',BASE_DIR + '_img/v2/btn_learnmore.gif'); 
            });
            
            $('img#applyonline').mouseover(function() {
                $(this).attr('src',BASE_DIR + '_img/v2/btn_applyonline_over.gif');
            });
            
            $('img#applyonline').mouseout(function() {
                $(this).attr('src',BASE_DIR + '_img/v2/btn_applyonline.gif');
            });
            
            $('img#chatonline').mouseover(function() {
                $(this).attr('src',BASE_DIR + '_img/v2/btn_chatonline_over.gif');
            });
            
            $('img#chatonline').mouseout(function() {
                $(this).attr('src',BASE_DIR + '_img/v2/btn_chatonline.gif');
            });
});

