$(document).ready(
    function() {

        $(".tab_content").hide();
        // $("ul.tabs li:first").addClass("active").show();
        $("ul.tabs li:first").addClass("firstTab");
        $(".tab_content:first").show();

        $("ul.tabs li").click(function() {
            $("ul.tabs li").removeClass("active");
            $(this).addClass("active");
            $(".tab_content").hide();
            var activeTab = $(this).find("a").attr("href");
            $(activeTab).fadeIn();
            return false;
        });

        // .............................................................................................................
        // top menu

        $("#topMenu .on").mouseover(function() {
            $(this).stop().animate({
                height : '220px'
            }, {
                queue : false,
                duration : 600,
                easing : 'easeOutBounce'
            });

        });

        $("#topMenu .on").mouseout(function() {
            $(this).stop().animate({
                height : '50px'
            }, {
                queue : false,
                duration : 600,
                easing : 'easeOutBounce'
            })
        });

        // .............................................................................................................
        // run window

        $(".runwin").click(function() {
            $(this).addClass('miniLoader');
            $('.windowContainer .winContent').load(

                $(this).attr('href') + '&open=win',

                function() {
                    $('.runwin').removeClass('miniLoader');

                    $('.overlay').fadeIn();
                    $('.windowContainer').fadeIn();

                });
            return false;
        });

        $(".closewin").click(function() {
            $('.windowContainer').fadeOut();
            $('.overlay').fadeOut();
        });

        // .............................................................................................................
        // lightbox

        $(".lightbox").lightbox({
            fitToScreen : true,
            imageClickClose : true
        });

        $("#randomProjectsPortfolio .project_box_desc:nth-child(2n)")
        .addClass('last'); 
                                        
          
        $('#coda-slider-1').codaSlider({
            dynamicArrows: false,
            dynamicTabs: false,
            autoHeightEaseDuration: 1000,
            slideEaseDuration: 700
 
        });
        
        //tabs slider
        $('#optionsBar #options a').click(function() {
            $('#optionsBar #options a').removeClass('current')
            $(this).addClass('current');
            
        }); 
        
                
    });

// .............................................................................................................
// clear order form

function clear_form() {
    document.order.reset();
}

