﻿jQuery(document).ready(function() {
    initialize();
    LoadRequestHandler();
});

function initialize() {

    jQuery('.MDTFeatArt_ShowOne').hover(function() { jQuery(this).addClass("hilite"); }, function() { jQuery(this).removeClass("hilite"); });
    jQuery('.MDTFeatArt_HideOne').hover(function() { jQuery(this).addClass("hilite"); }, function() { jQuery(this).removeClass("hilite"); });

    jQuery('.MDTFeatArt_ShowOne').click(function() {
        jQuery('.MDTFeatArt_HideOne').hide();
        jQuery('.MDTFeatArt_ShowOne').show();
        jQuery('.MDTFeatArt_InfoExpandable').hide('slow');
        jQuery(this).hide();
        jQuery(this).parent().children('.MDTFeatArt_HideOne').show();
        jQuery(this).parent().parent().parent().children('.MDTFeatArt_InfoExpandable').show('slow');
    });
    jQuery('.MDTFeatArt_HideOne').click(function() {
        jQuery(this).hide();
        jQuery(this).parent().children('.MDTFeatArt_ShowOne').show();
        jQuery(this).parent().parent().parent().children('.MDTFeatArt_InfoExpandable').hide('slow');
    });

    jQuery('.MDTFeatArt_HideOne').hide();
    jQuery('.MDTFeatArt_InfoExpandable').hide();

}


function LoadRequestHandler() {
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
}

function EndRequestHandler(sender, args) {
    if (args.get_error() == undefined) {
        initialize();
    }
}
