﻿function ShowHide() {
    $("#slidingDiv").animate({ "height": "toggle" }, { duration: 1000 });
    $('.showElement').toggle();

}
