$(document).ready(function(){
	$(document).pngFix(); 
	$("#contactForm").validate(); 

	$(".rollover").mouseover(function(){
		$(this).children(0).stop().animate({ opacity: 0 }, 200 );
	}).mouseout(function(){
		$(this).children(0).stop().animate({ opacity: 1 }, 200 );
	});

});