$(function(){
	$('.tabheader > ul').tabs();
	$('#subnav').removeClass('snavtmp');
	$(".imagetabs > ul").tabs({ fx: { opacity: 'toggle', duration: 100 } });
	
	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;
	});
	
	$("a[href='#print']").bind("click", function(){
		window.print();  
	});
	
	$('.classified-header').each(function() {
		var newText = $(this).text().replace('_','');
		$(this).html(newText);
	});

/* Clearing Forms
	*******************************/
	
	$("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;
		}
	});
	
	$('.close').click(function() {
		$(this).parent('#leaderboard').slideUp('fast');
		return false;
	});
	
});
