function Notify(title, desc){
	$j("#notification").html("<strong>"+title+"</strong> "+desc).fadeIn('slow');
	
	setTimeout(function(){
		$j("#notification").fadeOut('slow');
	}, 7000);
}