 (function ($) {
    $(document).ready(function () {
		// Accordion
        if ($.fn.accordion) {
            $("#Accordion").accordion({
                header: '> h3',
                icons: {
                    header: "closed",
                    headerSelected: "active"
                }, autoHeight: false, clearStyle: true,
                change: function (event, ui) {
                    $('#Accordion h3').removeClass('down'); //$('#Accordion .content').height('290px');	    
                    ui.newHeader.prevAll().addClass('down');

                    //Check to see if the previous accordion panel has a video object.
                    if (ui.oldContent.find("object").length > 0) {

                        var obj = ui.oldContent.find("object");
                        // stop the video.
                        obj[0].Content.MediaPlayer.Stop();

                    }
                }
            });
        }
	}); //End of document.ready function	
})(jQuery);
