jQuery(document).ready(function($){	
	
	// Fade tabs
	$(".idTabs").organicTabs();
	
	$(".produkt:odd").addClass('alt');
	
	// Clear on focus
	$(".search-text").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	})
});
jQuery.noConflict();

