﻿// JScript File

function enablePainting(){
    /*$("#content").mouseenter(function(){
        $("img.default").fadeOut(1000);
    }).mouseleave(function(){
        $("img.default").fadeIn(1000);
    });*/
}

function enableIntro(){
    //$(".brandwave1").hide();
    //$(".brandwave2").hide();
    $("#main").hide();
    $(".summary").hide();
    
    //$(".brandwave1").show("puff", {}, 3000);
    //$(".brandwave2").show("puff", {}, 2000);

    //$("#main").fadeIn(2000);
    $("#main").effect("slide",{},2000, afterEffect );
}

function afterEffect(){
    $(".summary").fadeIn(2000);
}

function enableEffect1(){
    /*$("#sound").jPlayer( {
        ready: function () { 
            $(this).setFile("img/effect1.mp3");
            $(this).play();
    }, swfPath: "img"});*/
}

function enablePanelFade() {
    $(function() { 
        $('.pandesc').jScrollPane({scrollbarWidth: 15, dragMaxHeight:11}); 
        $("#panel").hide();
    });
    $(document).ready(function(){
        $("#panel").fadeIn(1500);
    });
}

