$(document).ready(function()
 {
    $('#slideshow').cycle({
		fx: 'fade'
	});

    $('#email').ajaxForm(
     {
       target:'#contact',
       success: function()
        {
          $("#contact").load('library/ajax.php');
        }
     });
 });
