
$(function() 
{
	$("div.wcgSectionTitle").hover(function(){$(this).addClass("wcgSectionTitleHover");},function(){$(this).removeClass("wcgSectionTitleHover");});
	$("input.nextButton").hover(function(){$(this).addClass("nextButtonRollOver");},function(){$(this).removeClass("nextButtonRollOver");});
	$("input.nextButtonLong").hover
	(
	    function()
	    {
	        $(this).addClass("nextButtonLongRollOver");
	    },
	    function()
	    {
	        $(this).removeClass("nextButtonLongRollOver");
	     }
	);	
	$("div.wcgSectionTitle").click(function()
	{ 
		if($(this).next().css("display") == 'none') 
		{
			$(this).next().slideDown(500);
		}
		else 
		{
			$(this).next().slideUp(500);
		}
	});
});

function pretendYouAreReal() {
	
	$("div.wcgLabel").addClass("red");
	$("wcgWow").addClass("wcgErrorRow");
	$('div.wcgError').show();
}