$(document).ready(function(){
						   $("#productsicon > li>a >img").hover(function(){
																	$("#pname").append("&gt;&gt; "+$(this).attr("alt"));
																	$("#pname").fadeIn("fast");
																  },function(){
																	  $("#pname").hide();
																	  $("#pname").empty();
																	  
																  }); 
$('#productsimg').cycle({
fx: 'fade',
speed: '500',
timeout: 0,
next: '#productsimg',
pager: '#thumblist',
pagerAnchorBuilder: function(idx, slide) {
	return '#thumblist li:eq(' + (idx) + ') a';
}
});
});