$(document).ready(function() {
	if ( $('form#marketLogin').length > 0 )
	{
		$('#marketLogin input[name=email]').click(function() {
			$(this).val('');
		});
		$('#marketLogin input[name=pass]').click(function() {
			$(this).val('');
		});
	}
	if ( $('#userAction').length > 0 )
	{
		$('#userAction').submit(function(e) {
			$('#userAction .req').each(function() {
				if( $(this).val() == '' )
				{
					e.preventDefault();
					alert('Please complete all required fields.');
					return false;
				}
			});
		});
	}
	if ( $('a.pop').length > 0 )
	{
		$('a.pop').colorbox({innerWidth:450,innerHeight:300});
	}
});