﻿$(document).ready(function() {
    $(".topMenuAction").click(function() {
        if ($("#openCloseIdentifier").is(":hidden")) {
            $("#tabslider").animate({
                marginTop: "-60px"
            }, 500);
            $("#topMenuImage").html('<img src="' + search_img_open + '" alt="open" />');
            $("#openCloseIdentifier").show();
        } else {
            $("#tabslider").animate({
                marginTop: "-1px"
            }, 500);
            $("#topMenuImage").html('<img src="' + search_img_closed + '" alt="close" />');
            $("#openCloseIdentifier").hide();
        }
        return false;
    });
});
