﻿// JavaScript Document
$(document).ready(function() {
    var urlvalue = checkurl();
    function checkurl() {
        var location = window.location;
        locationurl = location.toString();
        var urlvaluetemp = locationurl.indexOf('cmspagemode=edit');
        return urlvaluetemp;
    }
    if (urlvalue == -1) {
        styleit();
        $('.imagecaption').hide();
}
    else {

    }
    function styleit() {
        $('#tab2').addClass('tabon');
        $('#tabbox1').hide();

        $('#tab1').click(function() {
            $('#tabboxouter div').removeClass('tabon');
            $('#tab1').addClass('tabon');
            $('#tabbox2').hide();
            $('#tabbox1').fadeIn();
            $('#tabboxouter').css('background-image', 'url(/images/icb_tabbox_left_r1_c1.gif)');
        });

        $('#tab2').click(function() {
            $('#tabboxouter div').removeClass('tabon');
            $('#tab2').addClass('tabon');
            $('#tabbox1').hide();
            $('#tabbox2').fadeIn();
            $('#tabboxouter').css('background-image', 'url(/images/icb_tabbox_right_r1_c1.gif)');
        });
        // Create feature box content
        $('#featurebox ul').hide();
        var FImage = $('#featurebox img').attr("src");
        var FTitle = $('#featurebox h2').html();
        var FSummary = $('#featurebox .sf_postContent').html();
        $('#featurebox').html('<img src="' + FImage + '" style="width:350px;height:Auto;" /><div id="featureboxinner"><h2>' + FTitle + '</h2><div id="featureboxsum">' + FSummary + '</div></div>');
        //create opportunities slide
        $('#opportunities li').each(function(i) {
            i = i + 1;
            $(this).addClass('item' + i);
        });
        $('.item2').css('border-right', 'none');
        $('.item3').hide();
        $('.item4').hide();
        $('.item4').css('border-right', 'none');
        $('.item5').hide();
        $('.item6').hide();
        $('.item6').css('border-right', 'none');
        $('#opp1').css('font-weight', 'bold');
        $('#opp1').click(function() {
            $('#opportunities li').hide(10);
            $('#oppslidenumber span').css('font-weight', 'normal');
            $('.item1').fadeIn();
            $('.item2').fadeIn();
            $('#opp1').css('font-weight', 'bold');
        });
        $('#opp2').click(function() {
            $('#opportunities li').hide(10);
            $('#oppslidenumber span').css('font-weight', 'normal');
            $('.item3').fadeIn();
            $('.item4').fadeIn();
            $('#opp2').css('font-weight', 'bold');
        });
        $('#opp3').click(function() {
            $('#opportunities li').hide(10);
            $('#oppslidenumber span').css('font-weight', 'normal');
            $('.item5').fadeIn();
            $('.item6').fadeIn();
            $('#opp3').css('font-weight', 'bold');
        });
    }

});
