$(document).ready(function(){

    $('#m_slideshow').cycle({
        fx:     'fade',
        speed:   2000,
        timeout: 6000,
        cleartype:  true,
        cleartypeNoBg:  true,
        pager:  '#ssnav',
        pagerAnchorBuilder: function(idx, slide) {
        return '#ssnav li:eq(' + (idx) + ') a';
        }
   });

   $('#hm-newmembers').cycle({
        fx:     'fade',
        speed:   2000,
        timeout: 6000
   });

   $('#ssnav').append("<li><a id='pbtn' class='pause'>&nbsp;</a></li>");
	var bplplay = true;
	$('#pbtn').click(function() {
			
	if (bplplay) {
	   $('#m_slideshow').cycle('pause');
	   $('#pbtn').removeClass('pause').addClass('play')
	   bplplay = false;
	} else {
	   $('#m_slideshow').cycle('resume');
	   $('#pbtn').removeClass('play').addClass('pause')
	   bplplay = true;
	}
    });

    $('#int_slideshow').cycle({
        fx:     'fade',
        speed:   2000,
        timeout: 6000
   });

   $('#retail-searchwrapper input[name=xsearch[0]]')
      .val('Search by zip code...')
      .click(function() {
        if ($(this).val() == 'Search by zip code...')
          $(this).val('')
      }).blur(function() {
        if ($(this).val() == '')
          $(this).val('Search by zip code...')
      });

});
