$(function(){
	$('#rotator').jshowoff({
		speed: 10000,
		controls: false,
		hoverPause: false
	});
	
	 $("#contact-form").submit(function(){

		var str = $(this).serialize();
		
	   $.ajax({
		   type: "POST",
		   url: "mailer.php",
		   data: str,
		   success: function(msg){
		
				$("#contact-form").ajaxComplete(function(event, request, settings){
				
					if(msg == 'ok') // Message Sent? Show the 'Thank You' message and hide the form
					{
						result = '<p><strong>Thank you!</strong> We will be in touch</p>';
						$("#contact-form").fadeOut();
					} else {
						result = msg;
					}
					
					$('#answer').html(result);
					
				});
		
			}

		});
		
		return false;
		
	});
	
	$('.pop').fancybox({
		padding: 0,
		overlayOpacity: 1,
		overlayColor: 'transparent'
	});
	
	
	$('.thumbs img').live('mouseover', function(){ 
		var newImg = $(this).attr('src');
		var largeImg = $('#largeImg img');
		largeImg.attr('src', newImg);
	
	});
	
	
	//$('#join-form').validate();

});














