$(document).ready(function(){
	
	$('body, img, div').pngFix();

	$('#images').cycle({timeout:5400,fit:1,height:158,random:false});
	$('#testimonials').cycle({timeout:5500,random:false});

	$("#cont-left div").hover(function() { $(this).stop().animate({ opacity: 0.55 }, 500);
	}, function() { $(this).stop().animate({ opacity: 1.0 }, 500); });
	
	$("form#contactForm").validate({
		errorClass: "inputError", 
		errorElement: "div",
		highlight: function(element, errorClass) {
			$(element).addClass("inputErrorHighlight");
		},
		unhighlight: function(element, errorClass) {
			$(element).removeClass("inputErrorHighlight").removeClass("inputError");
		}
	});
	
	$('div.success,div.error').hide().fadeIn(500).fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500);

});
