var $ty = jQuery.noConflict();
	$ty(document).ready(function(){
		$ty("#rds").hide();
		$ty("#switch").click(function(){
			if(document.getElementById('rds').style.display	== "none"){
			$ty("#rds").fadeIn("fast");
				$ty.scrollTo(
					$ty('#switch'),{
					speed: 500
					}
				);
			} else {
			$ty("#rds").fadeOut("fast");
			}
		});
	});

