$(document).ready(function() {    
    
    var sections = ['firma','salon','serwis','partnerzy','kontakt'];
    
    for (var i = 0; i < sections.length; i++) {
        
        var secClose = "#" + sections[i] + "Info";
        $(secClose).hide();
    }
    
    

$('a.open').click(function(event) {
	event.preventDefault();
        
    for (var i = 0; i < sections.length; i++) {
        
        var secClose = "#" + sections[i] + "Info";
        $(secClose).hide('normal');
    }

	var id = this.id.replace('Link', "");
        var secOpen = "#" + id + "Info";
        $(secOpen).show('normal');
        return false;
});


  $('a#closeBut').click(function() {
    
    $(this).parents("div:eq(1)").hide('normal');
    return false;
  });


    
});
