$(document).ready(function() {
		
	$('#rotator').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 10000, 
		pager: '#rotator-cycle',
        pagerAnchorBuilder: function(idx, slide) {
            return '<li><a href="#" class="' + slide.title + '">' + '</a></li>';
        }
	});
	
	$('.contactForm').ajaxForm(function(data) {
			if (data==0){$('.contact-error').hide();$('.contact-success').fadeIn("slow");$('.contactForm').resetForm();}
			else if (data==1){$('.contact-success').hide(); $('.contact-error').fadeIn("slow");}
	});
	
});

