$(document).ready(function () {
	
  $('#menu li.expandable').hoverIntent(
      function () {
          //show its submenu
          $('div.expansion', this).slideDown(100);
					$('a:first', this).addClass('hover');

      },
      function () {
          //hide its submenu
          $('div.expansion', this).slideUp(100);
					$('a:first', this).removeClass('hover');
      }
  );


	$(".vTestimonial,.vAnimation,.vMedia").each(function(index, domElement) {
		$(this).colorbox({href:$(this).attr("href"),opacity:0});
	});

	$("#search").focus(function(){
		if (this.value == 'Search') {
			this.value = '';
		}
	});
	
	$("#search").blur(function(){
		if (this.value == '') {
			this.value = 'Search';
		}
	});
	
	
	$("#emailadd").focus(function(){
		if (this.value == 'Email Address') {
			this.value = '';
		}
	});
	
	$("#emailadd").blur(function(){
		if (this.value == '') {
			this.value = 'Email Address';
		}
	});
	
	
	// <input type="text" value="Type Keywords And Hit Enter..." name="s" class="search-box" id="searchform" onfocus="if (this.value == 'Type Keywords And Hit Enter...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Type Keywords And Hit Enter...';}">


});


