var $t = jQuery.noConflict();
$t(document).ready(function () {
	$t('#rds').hide();
		$t('#trigger').click(function() {
			if(document.getElementById('rds').style.display == "none"){
				$t('#rds').fadeIn("slow");
			} else {
				$t('#rds').fadeOut("slow");
			}
    });
});



