$(document).ready(function(){
  $('#feature').show();
  $('#feature').cycle({
    fx:     'fade',
    speed:  'slow',
    timeout: 4000,
    pager:  '#featureNav',
    pagerEvent: 'mouseover',
    pauseOnPagerHover: true,
    pagerAnchorBuilder: function(idx, slide) { 
      return '<a href="#" rel="' + slide.name.replace("_", " ") + '">' + (idx + 1) + '</a>';
    }
  });
  jQuery('#featureNav a').click(function (){ 
    tsearch( jQuery(this).attr('rel'));
  });
});
function tsearch(t)
{
  $('#hdnCatalogueSearch').val(t);
  $("#formCatalogue").submit();
}