// JavaScript Document


	function membersPageContentChange(sourceURL, source_to_id, source_to_hide){
		//alert('jirka' + sourceURL);
		$('#'+ source_to_hide).hide();
		$.ajax({
		  url: sourceURL,
		  cache: false,
		  //data: 'result=detail&action='+ action +'&hotel_id='+ id +'&url='+ url +'',

		  success: function(html){
			//$('#'+ source_to_hide).fadeOut("slow");
			//$('#'+ resultDiv).fadeIn("slow");
			$('#'+ source_to_id).html(html);
			$('#'+ source_to_id).fadeIn("slow");
			
		  }
		});

	
	}