$(function() {

    /*******************************************************************************************************************
    *  Form elements focus                                                                                             *
    *******************************************************************************************************************/
    $('input[type="text"]').focus(function() {if (this.value == this.defaultValue){ this.value = ''; }});
    $('textarea').focus(function() {if (this.value == this.defaultValue){ this.value = ''; }});
    
    /*******************************************************************************************************************
    *  jCarousel                                                                                                       *
    *******************************************************************************************************************/
    $('#jCarousel').jcarousel({
        scroll: 1,
        auto: 5,
        wrap: "both"
    });
    
    /*******************************************************************************************************************
    *  Set height in row (parentSelector, childSelector, itemsPerRow)                                                  *
    *******************************************************************************************************************/
    setEqualHeightInRow('.cols', 'li', 3);
    
    /*******************************************************************************************************************
    *  Add function to open new-
    *******************************************************************************************************************/

    $('a.new-window').click(function () {
        window.open(this.href, "newwindow");
        return false;
    });
});
