// independently show and hide
$(document).ready(function() {
	/* Default layout left menu hide functions*/ 
  $('div.menu-show > div').show();  
  $('div.menu-show > div.trigger').click(function() {
    $(this).next('div').slideToggle('fast');
  });
  
  /* bradavicarka/index comment hide functions */
  $('div.comment-add').hide(); 
  $('div.comment-hide').hide();
  $('div.comment-toggle').click(function() {
	var myID = 'div#comment_'+this.id;
    $(myID).slideToggle('fast');
  });
  
  /* Hide all hidden divs */
  $('div.hidden').hide();
  
  /* Show all selected divs */
  $('div.selected').show();
});


// div link onclick function for a new blank window
function targetBlank (url) {
  blankWin = window.open(url,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}





