jQuery.noConflict();

jQuery(document).ready(function($) {

    // setup the rightnow dialog
	$("#rightNowLightbox").dialog({
        title: "Q&amp;A",
        autoOpen: false,
        height: 800,
        width: 760,
        modal: true,
        resizable: false,
        draggable: false
    }).css("overflow:hidden");

	$(".rn_Title > a").live('click', function(event) {
  		event.preventDefault();
		//top.location.hash = "#lightbox";
		var href = $(this).attr("href") + "/site/lightbox";
		//alert(href);
		$("#rightNowLightbox").html("<iframe id=\"rightNowIframe\" width=\"740\" height=\"730\" marginWidth=\"0\" marginHeight=\"0\" frameBorder=\"0\" scrolling=\"auto\" />").dialog("open");
   	    $("#rightNowIframe").attr("src", href);
	});

});
