﻿$(document).ready(function() {
    // start Jquery funtions now.


    //    Test
    //    $('#fadeDiv').click(function() {
    //        $('#fadeDiv').fadeOut('slow');
    //    });

    //large image and thumbs
    $(".thumbs a").mouseover(function() {
        var largePath = $(this).attr("newimg");
        var largeAlt = $(this).attr("title");
        var largeWidth = $(this).attr("newimgWidth");
        var largeHeight = $(this).attr("newimgHeight");
        document.getElementById("dImgText").innerHTML = largeAlt;
        $(".largeImg img").attr({ src: largePath, alt: largeAlt });
        $("h2 em").html(" (" + largeAlt + ")"); return false;
    });


    //Accordion
    $("#firstHeader").addClass("active");
    $(".accordion .cpanel:not(:first)").hide();
    $(".accordion h3").click(function() {
        $(this).next(".cpanel").slideToggle("fast");
        $(this).toggleClass("active");
    });


    //end Jquery functions
});
