function supports_h264_baseline_video() {
  try {
	  var v = document.createElement("video");
	  if(!v) return false;
	  return v.canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"');
  } catch(err) {
  	  return false;
  }
}
$(document).ready(function() {
	$("#search-keyword").focus(function() {
		if(this.value=='Search Our Site') {
			this.value='';
		} else {
			if(this.value=='') this.value='Search Our Site';
		}
	});
	$("#search-keyword").blur(function() {
		if(this.value=='Search Our Site') {
			this.value='';
		} else {
			if(this.value=='') this.value='Search Our Site';
		}
	});
	$(".colorbox").colorbox();	$(".overlay").colorbox();
	$(".video-player").colorbox({iframe:true,innerWidth:'614px',innerHeight:'416px'});
});

