$(document).ready(function() {
  
  var searchBox = $("input.s1");
  var searchBoxDefault = "Search ";
  searchBox.focus(function(){
          if($(this).attr("value") == searchBoxDefault) $(this).attr("value", "");
  });
  searchBox.blur(function(){
          if($(this).attr("value") == "") $(this).attr("value", searchBoxDefault);
  });
  
  $("a.cbme").colorbox({maxWidth:"95%",maxHeight:"95%",rel:'gal'});
  $("a.cbyme").colorbox({innerWidth:"565px", innerHeight:"354px", inline:true, href:"#_youtube"});
  
  if (screen.width >= 1024) {
    $('.tooltip').tooltip({
      track: true,
      delay: 0,
      top: -25,
      left: 25 ,
      showURL: false
    });
  };
	
  
});  		
