// Home Page Specific Scripts
$(document).ready(function() {

    // Home Page Main Image
    $('#homeMainImage li').each(function() {
        $(this).find('a').click(function() {
            if ($(this).parent().attr('current') != 'current') {
                $('#homeMainImage li').attr('current','');
                $('#mainImageContent').html($(this).parent().find('div.liContent').html());
                $(this).parent().attr('current','current');
            }
            return false;
        });
    });
    
    $('#mainImageContent').html($('#mainImage #homeMainImage li:first div.liContent').html());
    $('#mainImage #homeMainImage li:first').attr('current','current');
    
    $('ul#homeMainImage li:nth-child(1)').css('background','url(/cta-bg-1.png) no-repeat');
    $('ul#homeMainImage li:nth-child(2)').css('background','url(/cta-bg-2.png) no-repeat');
    $('ul#homeMainImage li:nth-child(3)').css('background','url(/cta-bg-3.png) no-repeat');
    $('ul#homeMainImage li:nth-child(4)').css('background','url(/cta-bg-4.png) no-repeat');
    
    // Home Page Tabs
    $('#homeTabs li').each(function() {
        $(this).find('a.tab').click(function() {
            if ($(this).parent().attr('class') != 'current') {
                $('#homeTabs li').removeClass('current');
                $('#homeTabs li div.liContent').hide();
                $(this).parent().addClass('current');
                $(this).parent().find('div.liContent').fadeIn();
            }
            return false;
        });
    });
    
    $('#homeTabs li:first').addClass('current');
    $('#homeTabs li:first').parent().find('div.liContent:first').fadeIn();
    
});