Cufon.replace('h3, .header h1, .teaser h2');

$(document).ready(function () {

	// Tabs
	var tabContainers=$('div.tabs > div');tabContainers.each(function(){this.id+= '-element';}).addClass('hide').filter(':first').removeClass('hide').addClass('show');
	$('div.tabs ul.tab-nav a').click(function(){tabContainers.removeClass('show').addClass('hide');tabContainers.filter(this.hash + '-element').removeClass('hide').addClass('show');$('div.tabs ul.tab-nav a').removeClass('selected');$(this).addClass('selected');}).filter(':first').click();
	

	// Clear inputs on blur
	$("input").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
});

