$(document).ready(function(){
	
	$('#newsletterForm').submit(function(){
		
		if( $('input[name=first_name]', this).val() == '' ){
			alert('First name is required');
			return false;
		}
		if( $('input[name=last_name]', this).val() == '' ){
			alert('Last name is required');
			return false;
		}
		if( $('input[name=email]', this).val() == '' ){
			alert('Email is required');
			return false;
		}
		
	});
	
	$('table#pictures .thumbnail a, #profile-pictures a').fancybox();
	$('table#pictures .options a').click(function(){
		return confirm('Are you sure you want to permanently delete this picture?');
	});
	
});