jQuery(document).ready(function($){
// need the above line so I can use the $	
// **************************************


$(document).ready(function()
  { $('.wpcf7-form').formly(); });


 $(document).ready(function(){
   $(".stripeMe tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
   $(".stripeMe tr:even").addClass("alt");
 });
 
 $(document).ready(function(){
	 $('.icon32 a').mouseover(function() {
	         $(this).animate({ borderTopColor: "#0e7796" }, 'fast');
	 });
	 $('.icon32 a').mouseout(function() {
	         $(this).animate({ borderTopColor: "#fff" }, 'fast');
	 });
 });
 
 



// ***************************************
// the following line closes everything up
});



