$(document).ready(function() {
  
  tooltip();

  //lightbox style slideshow
	$('#gallery-parcell-press a').lightBox();
	$('#gallery-ultra-dolphins a').lightBox();
	$('#gallery-babc a').lightBox();
	$('#gallery-gpcc a').lightBox();
	$('#gallery-len a').lightBox();
	$('#gallery-muscle-crap a').lightBox();
	$('#gallery-books a').lightBox();
	$('#gallery-clapyrhands a').lightBox();
	$('#gallery-free103point9 a').lightBox();
	$('#gallery-nysca a').lightBox();	
	$('#gallery-culturepass a').lightBox();
	$('#gallery-gtrphilabiz a').lightBox();
	$('#gallery-brainworms a').lightBox();
	$('#gallery-gphcc a').lightBox();
	$('#gallery-anthroapology a').lightBox();
	$('#gallery-battles a').lightBox();
	$('#gallery-dirty-south a').lightBox();
	$('#gallery-email a').lightBox();
	$('#gallery-rgc a').lightBox();
	$('#gallery-polaroid-celluloid a').lightBox();
	$('#gallery-drama a').lightBox();
	$('#gallery-posters a').lightBox();
	$('#gallery-uwishunu a').lightBox();
	$('#gallery-mess a').lightBox();
	$('#gallery-31patterns a').lightBox();
	$('#gallery-tj a').lightBox();
	$('#gallery-ypn a').lightBox();  


  //AJAX contact form
  $("form").submit(function(){
  var str = $("form").serialize();
     $.ajax({
     type: "POST",
     url: "contact.php",
     data: str,
     success: function(msg){
  $("#note").ajaxComplete(function(event, request, settings){
  if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
  {
  result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
  $("#fields").hide();
  }
  else
  {
  result = msg;
  }
  $(this).html(result);
  });
  }
   });
  return false;
  });

});