// JavaScript Engine

	$(document).ready(function(){
	
	$(".gallery a, .col .img a").fancybox({
		'hideOnContentClick': false
	});
	
	// home gallery
	$('#slider').cycle({
			fx:      'fade',// see more options at http://malsup.com/jquery/cycle/options.html
			timeout:  8000, // time of the rotation
			speed:   800,
			//pager:  '.nav-thumbs', 
		});
	
	 // submit form
 	$('#myForm').ajaxForm(function(data) {
            if (data==1){
                $('#success').fadeIn("slow");
                 $('#myForm').slideUp("slow");
                $('#myForm').resetForm();
            }
            else if (data==2){
                $('#badserver').fadeIn("slow");
            }
            else if (data==3)
            {
                $('#bademail').fadeIn("slow");
                setTimeout(function() { 
  				$('#bademail').fadeOut("slow"); 
				}, 10000);
            }
        });
  
});