
// Tabs
jQuery(function() {
	jQuery(".tab-two").hover(function() {
			jQuery(".tab-one").removeClass('current');
			jQuery(".tab-two").addClass('current');
		}
	);
	jQuery(".tab-one").hover(function() {
			jQuery(".tab-two").removeClass('current');
			jQuery(".tab-one").addClass('current');
		}
	);
});

// Hide/Show Value
jQuery(function() {
	jQuery("input.blurValue").focus(function() {
		if (this.value == this.defaultValue) {	this.value = ""; }
	}).blur(function() {
		if (this.value == "") { this.value = this.defaultValue; }
	})
}); 
