// JavaScript Document

	
$(document).ready(function() {
		
		
	$('#registration_form') .css({
		'display' : 'none',
	});
		
	$('.call') .click(function() {
		$('#registration_form') .toggle ();
		if ($('#registration_form') .is (':visible')) {
		$(this).val('Hide');
		} else {
		$(this).val('Show');
		}
	});
 
 
 	$('#claimblock') .css({
		'display' : 'none',
	});
	
 	$('.claim') .click(function() {
		$('#claimblock') .show();
		$('.claim') .hide();
	});
 
});

$(document).ready(function() {
	$('#noscript') .remove();
	
});
	

	

