jQuery(document).ready(function() {

  // AJAX URL CONVERSATION GUIDELINES WINDOW ----------------------------------------------------
  
  // create popup window
	$("#url_thread_guidelines_window").draggable();
	
  // open window
	$("#url_thread_guidelines_link").click(function(event) {

    // position window relative to mouse click
    $("#url_thread_guidelines_window").css("top", event.pageY-600).css("left", event.pageX-380);

    // show window
		$("#url_thread_guidelines_window").fadeIn("fast");
    event.preventDefault();
	});

	// hide window when user clicks close
	$("#close_url_thread_guidelines").click(function(event) {
		$("#url_thread_guidelines_window").fadeOut("slow");
    event.preventDefault();
	});	
});