$(document).ready(function(){ 

// PRETTY PHOTO INIT
$("a[rel^='prettyPhoto']").prettyPhoto();						 

// AJAX CONTACT FORM INIT

 $('#contact').ajaxForm(function(data) {
		 if (data==1){
			 $('#success').fadeIn("slow");
			 $('#bademail').fadeOut("slow");
			 $('#badserver').fadeOut("slow");
			 $('#contact').resetForm();
			 }
		 else if (data==2){
				 $('#badserver').fadeIn("slow");
			  }
		 else if (data==3)
			{
			 $('#bademail').fadeIn("slow");
			}
			});
 
 
 $('#news').innerfade({
						animationtype: 'slide',
						speed: 1050,
						timeout: 4000,
						type: 'sequence',
						containerheight: '1em'
					});

  
 setInterval('cambia()',9000);


});

var cambio = 1;
function cambia(){
	
	$('.fondo'+cambio).fadeOut(800, function(){
											  cambio++;
	$('.fondo'+cambio).fadeIn(1400);
											  });
	
	if(cambio == 7){cambio =0;}

	
	}
