// JavaScript Document


	var $plex = jQuery.noConflict();

	$plex(document).ready(function(){
							   
		if(pageId == 2) {
		   	$plex("dd:not(:first)").hide();
			$plex("dd a").eq(itemId).css("color", "#333");		
			$plex("dd a").eq(itemId).css("font-weight", "bold");	

		}
		else
		   	$plex("dd").hide();
		
		$plex("dt a").click(function(){
			
			$plex("dd:visible").slideUp("slow");
			$plex(this).parent().next().slideDown("slow");
			
			//return false;
			
		});
		
		if(itemId < 0)
			$plex("dt a").eq(pageId).css("color", "#333");
		
		if ( $plex('#RegistrationForm').length > 0 ) {
		  $plex("#RegistrationForm").validate();
		}
	});