$(document).ready(
	function(){
		
		$.fn.search = function() {
			return this.focus(function() {
				if( this.value == this.defaultValue ) {
					this.value = "";
				}
			}).blur(function() {
				if( !this.value.length ) {
					this.value = this.defaultValue;
				}
			});
		};
		
		// newsletter IDs
		$("#s").search();
		
		 // initialize scrollable 
		 $("div.scrollable").scrollable();
		
		// accordion
		$(".desc").accordion({ active: false, collapsible: true  });
		
		// columnizelist
		$('.services ul').makeacolumnlists({cols:2,colWidth:394,equalHeight:false,startN:1});
	}
);
