$(document).ready(function() {
	$('.popup').css('cursor','pointer').click(function(){
		$('#bio-popup').show();					   
	});
	$('.close').css('cursor','pointer').click(function(){
		$('#bio-popup').hide();					   
	});
	$("input[type='radio']").css({
				'border' : 'none', 
				'background' : 'none'
	});
	$("input[type='text'], input[type='password']").addClass('textinput');
	$("input[type='submit']").addClass('submit');
	$("input[type='button']").addClass('button');
	$("input[type='checkbox']").css({
				'border' : 'none', 
				'background' : 'none'
	});
});




