$(document).ready(function(){

	$(".productHandle").hover(
		function(){
			window.document.slideFlow.SetVariable("current", $(this).attr("alt"));
			window.document.slideFlow.updateInfo();
		},
		function(){
			//mouse out
	});	
});
