$(function(){
	$('.tabbed').tabs();
	$('.tabheader').tabs();
	var galleryTabs = $("#galtabs").tabs();
	
	$('.galnav > a.next').click(function() {
		galleryTabs.tabs('select', $(this).attr('href') );
		return false;
	});
	
	$('.galnav > a.prev').click(function() {
		galleryTabs.tabs('select', $(this).attr('href') );
		return false;
	});

	/* Clearing Forms
	*******************************/

	$(".cleartext").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
			$(this).addClass('focus');
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
			$(this).removeClass('focus');
		}
	});

	$("input#search_field, input#comment_name, input#comment_email, input#comment_turing, textarea#comment_body, input#subscribe").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
});
