$(document).ready(function() {
	// clear input fields
	$('.textfield').clearOnFocus();
	
	$('input.input').css('width', '200px');
	
	
	// Modal window triggers
	var triggers = $(".modalInput").overlay({
	
		// some mask tweaks suitable for modal dialogs
		mask: {
			color: '#000',
			loadSpeed: 200,
			opacity: 0.5,
			effect: 'apple'
		},
	
		closeOnClick: true
	});
	
}); // end ready



