jQuery(document).ready(function($){
  $("#menu-second_top li").last().addClass('last');
  $("#menu-main li").last().addClass('last'); 


	$("#s").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});

       // $("a").not("[href*=http://exhibitcompany.com]")
	//        .attr({ target: "_blank" });

});
