jQuery(function(){
    //----------
    // Show and Hide fake label placed inside the input field (for the search form)
    //----------
    $('form .inset-label').bind('click', function(){
        var $label = $(this);
        $label.fadeOut(300);
        $label.next('input').bind('blur', function(){ $label.fadeIn(300) }).focus();
    });
    
    //----------
    // Call Cycle for gallery if present
    //----------
    if ( $('.gallery').length > 0 ) {
        $('.gallery .images').cycle({
            'next': "#next",
            'prev': "#prev",
            'pager': '#pager',
        });
    }

});
