/* TOP MENU TOGGLE */
$(document).ready(function () {
//all target div's which has to be toggled has the class slider
var $sliders = $(".tabs").hide();
$(".show_hide").show();
$('.show_hide').click(function () {
var $target = $($(this).data('target'));
$sliders.not($target).stop(true, true).slideUp();
$target.stop(true, true).slideToggle();
});
});
/* TOP MENU TOGGLE */