jQuery(document).ready(function() {
	
	jQuery('#show-1').click(function() {
		jQuery('#costumes').fadeIn('slow');
		jQuery('#access').fadeOut('fast');
	});
	jQuery('#show-2').click(function() {
		jQuery('#access').fadeIn('slow');
		jQuery('#costumes').fadeOut('fast');
	});
	
	
	jQuery('#gform_1 input').attr("tabindex", 55);
});
