$(document).ready(function(){
//SERVICES
  $('.services span').hide();
  $('.services a').click(function(){
    $(this).parent().parent().find('span').slideUp('fast');
    $(this).parent().find('span').slideToggle('fast');
  });
//GALLERY
  $('#gallery_pick img').click(function(){
    $('#gallery_show').attr('src', this.src);
	$('#gallery_text').html(this.title);
  });
  $('#content form').validate();
});
