$(function() {
		$('a[rel=lightbox]').lightBox();
		$("#nova_diskuze").click(function(){
  		$("#diskuze").load(this.href) ;
			return false;
		});

		$(".reakce").click(function(){
		var odkaz = this
  	$("#diskuze").load(odkaz.href);
			return false;
  	});

    $("a").filter(function() { return this.hostname && this.hostname !== location.hostname;}).attr('target', '_blank');


});



