$(document).ready(function(){
	// hide price list for cafe and restaurant
	$('#cafe').hide();
	$('#restaurant').hide();

  // replace cafe and restaurant DIVs HTML to include show/hide links
  $('#restaurant_div').html('<a href="#" id="restaurant_link">Zobraziť cenník reštaurácie</a>');
  $('#cafe_div').html('<a href="#" id="cafe_link">Zobraziť cenník kaviarne</a>');

  // remove the HR and excessive BR tags above restaurant link
  $('#cafe_div').prev('br').remove();
  $('#cafe_div').prev('br').remove();
  $('#cafe_div').prev('hr').remove();

  // add onclick to our 2 new links
  $('#restaurant_link').bind('click', function() {
    t = $(this);
    if (t.html() == 'Zobraziť cenník reštaurácie') {
      t.html('Skryť cenník reštaurácie');
      $('#restaurant').show();
    } else {
      t.html('Zobraziť cenník reštaurácie');
      $('#restaurant').hide();
    }

    return false;
  });

  $('#cafe_link').bind('click', function() {
    t = $(this);
    if (t.html() == 'Zobraziť cenník kaviarne') {
      t.html('Skryť cenník kaviarne');
      $('#cafe').show();
    } else {
      t.html('Zobraziť cenník kaviarne');
      $('#cafe').hide();
    }

    return false;
  });
});