OK, I tried the following, but it doesn't seem to work. It slides when you click the link, but it doesn't swipe:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Slide and Swipe Demo</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
</head>
<body>
<div data-role="page" id="home">
<div>
<h1>Home</h1>
</div>
<div data-role="content">
<p><a href="effects.htm?id=slide" data-transition="slide">Slide</a></p>
</div>
</div>
<script>
$("#home").bind('swipeleft', function (event, ui) {
$.mobile.changePage('effects.htm');
});
</script>
</body>
</html>