$(document).ready(function(){
   /* Add Iframe to div in footer to track conversions */
   $('#storeclick').click(function(){
        $('#ctrack').html('<iframe src ="ctrack.html" style="border:none;width:1px;height:1px;" marginheight="0" marginwidth="0ctrack.html frameborder="0"></iframe>');
   });

    
  /* search box edits */
  var searchBox = $('#mainNavSearchTxt');
  /* remove 'SEARCH' text on focus */
  
  $(searchBox).focus(function(){
    if ($(this).attr('value') == 'SEARCH') {
      $(this).attr('value', '');
    }
    
    $(this).blur(function() {
      if ($(this).attr('value') == ''){
        $(this).attr('value', 'SEARCH');
      }
    });
  });
});


