﻿$(document).ready(function () {
    //    $("#imageCont.anim #mainimage").fadeIn(500, function () {
    //        $(".hands").css("opacity", "0.1");
    //        $(".hands").animate({
    //            left: "+10px",
    //            opacity: 1
    //        }, 1000);
    //    });



    if ($('#imageCont').hasClass('anim')) {
        $("#mainimage").fadeIn(500, function () {
            $(".hands").css("opacity", "0.1");
            $(".hands").animate({
                left: "+10px",
                opacity: 1
            }, 1000);
        });
    }
    else {
        $("#mainimage").css("display", "block");
        $(".hands").css("left", "10px");
    }

    //png fix for older ie
    DD_belatedPNG.fix("h1.logo, .hands");


});
