var $beling = jQuery.noConflict();

$beling(document).ready( function() {
	$beling("#loginRight").hide();
	$beling("#showLogin").click( function() {
		$beling("#loginRight").toggle();
	});
	$beling(".secondChoice").hide();
	$beling("#registerKidLink").click( function() {
		$beling(".firstChoice").hide();
		$beling(".secondChoice").show();
	});
	$beling("#registerParentLink").click( function() {
		$beling(".secondChoice").hide();
		$beling(".firstChoice").show();
	});
//	$beling(".tablesorter").tablesorter( {
//		headers : {
//			7 : {
//				 sorter :false
//			}
//		},
//		sortList : [ [ 0, 0 ] ],
//		widgets : [ 'zebra' ]
//	});
});