﻿

$(document).ready(function () {

  //alert('Mapping is correct');

//Menu Script/////////////////////

    var d = 300;
    $('#navigation a').each(function () {
        $(this)
        .stop(true, true)
        .animate({'marginTop': '-80px'}, d +=300);
    });

    $('#navigation > li').hover(
                function () {
                    $('a', $(this)).stop(true, true).animate({
                        'marginTop': '-70px'
                    }, 200);
                },
                function () {
                    $('a', $(this)).stop(true, true).animate({
                        'marginTop': '-80px'
                    }, 200);
                }
            );

                //Menu Script End/////////////////////     
              
                // hide all the content panes when the page loads
                $('#AccordianDiv > div').hide();

                // uncomment the next line if you'd like the first pane to be visible by default
                $('#AccordianDiv > div:last').show();

                $('#AccordianDiv h3').click(function () {
                    $('#AccordianDiv > div').hide();
                    $(this).next().animate(
	                { 'height': 'toggle' }, 1500, 'easeOutBounce');

                });

                // END how 2 page script//
 
});

