jQuery(document).ready(function(){
	jQuery(".search :input[type='text']").focus(function(event){
		this.value = (this.value == this.defaultValue) ? '' : this.value;
		jQuery.searchImage = jQuery(this).css('background-image');
		jQuery(this).css('background-image','none');
	});
	

	jQuery(".search :input[type='text']").blur(function(event){
		//this.value = (this.value == '') ? this.defaultValue : this.value;
		if(this.value == ''){
			this.value = this.defaultValue;
			jQuery(this).css('background-image',jQuery.searchImage);
		}else{
			this.value = this.value;
		}
	});
	
	jQuery('#tabs div').hide();
	jQuery('#tabs div:first').show();
	jQuery('#tabs ul li:first').addClass('active');
	jQuery('#tabs ul li a').click(function(){ 
	jQuery('#tabs ul li').removeClass('active');
	jQuery(this).parent().addClass('active'); 
	var currentTab = jQuery(this).attr('href'); 
	jQuery('#tabs div').hide();
	jQuery(currentTab).show();
	return false;
	});
	
});