﻿/// <reference path="jquery-1.4.2.min.js" />

$(function () {

    /* Søkeboks */
    var sB = $(".SearchBoxInput");
    var initText = "Søk..";
    sB.attr("value", initText);
    sB.focus(function () {
        if (sB.val() == initText) {
            sB.attr("value", "");
        }
    });
    sB.blur(function () {
        if (sB.val() == "") {
            sB.attr("value", initText);
        }
    });

    /* jScrollPane*/
    $(".Template-Folder").jScrollPane({
        scrollbarWidth: 7,
        showArrows: true,
        dragMaxHeight: 60
    });

    /* jquery Cycle */
    // WebFolders
    $('.PictureShow-Content').cycle({
        timeout: 4000,
        speed: 800,
        cleartypeNoBg: true,
        fx: 'fade',
        pager: '.controllers'

    });
    // Webroot1
    $('.Root-PictureShow-Content').cycle({
        timeout: 4000,
        speed: 800,
        cleartypeNoBg: true,
        fx: 'fade'
    });
});
