
  $(document).ready(function(){
    $("#contact").validate();
  });


    $(document).ready(function() {
        $("img[rel]").each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.5 }, 200);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 200);
           });
        });
    });
  

	
		$(document).ready(function() {
             $("img[rel]").overlay();
              });
		

