// JavaScript Document$(document).ready(function (){	/* TABS */	$('.tabs').children().not('.tab_nav').not('.embed').hide();	$('.tabs span.tab_nav a').click(function () {		var div = $(this).attr('href');				// reset tabs		$('.tabs').children().not('.tab_nav').not('.embed').hide();		$('.tabs span.tab_nav a').removeClass('on');				// show current tab		$(this).addClass('on');		$(div).show().children().show();		$(this).blur();		return false;	});		// make first tab clicked	// unless specifically one is marked on then make that clicked	if ($('.tabs span.tab_nav a.on').length)	{		$('.tabs span.tab_nav a.on').click();	}	else {		$('.tabs span.tab_nav a:first').click();	}	//Anti-captcha	$(".antiCaptcha").val("Valid");/*	$("#joinForm").validate({  	rules: {    	password2: {     	 equalTo: "#password",	 	 minlength: 6    	}  		}	});	*/	//Block Spam WMA anti-captcha	$(".fakeCaptcha").val("WebManArmyRocks");		//sendToAFriendForm clear text	$("#friendEmail").click(function ()	{		if($(this).val() == "Friend's E-Mail")			$(this).val('');		}).change(function ()	{		if($(this).val() == "")			$(this).val("Friend's E-Mail");		});});
