$(document).ready(function() {
    $('a.shower').each(function() {
        $(this).click(function() {
			var t = $(this);
            var content_div = t.parent().parent().parent().find('.panel_top_margin div');
            content_div.slideDown();
			t.parent().find('a.hider').show();
			t.hide();
        });
    });

    $('a.hider').each(function() {
		var t = $(this);
        $(this).click(function() {
            var content_div = t.parent().parent().parent().find('.panel_top_margin div');
            content_div.slideUp();
			t.parent().find('a.shower').show();
			t.hide();
        });
    });

	$('a.hider').each(function(index) {
		if(index != 0) { // if(index != 0) {
			$(this).click();
		} else if(index == 0) { //} else if(index == 0) {
			$(this).parent().find('a.shower').hide();
		}
	});

});