$(function() {
	$('#s1').cycle('fade');
});

$(function() {
	// Select all links whose attribute rel starts with lightbox
	$('a[rel^=lightbox]').lightBox();
});
    
    jQuery(document).ready(function($){
        $('#myForm').ajaxForm(function(data) {
            if (data==1){
                $('#success').fadeIn("slow");
                $('#bademail').fadeOut("slow");
                $('#myForm').resetForm();
            }
            else if (data==2) $('#badserver').fadeIn("slow"); 
            else if (data==3) {
            		$('#success').fadeOut ("slow");
                $('#bademail').fadeIn("slow");
            }
        });
    });
