// JavaScript Document 
$(function(){ 
	
	// innerfade - http://medienfreunde.com/lab/innerfade/   
	$('#fader').innerfade({ speed: 1500, timeout: 6000, type: 'sequence', containerheight: '400px' });
	$('#faderBig').innerfade({ speed: 1500, timeout: 6000, type: 'sequence', containerheight: '700px' });

	// prettyPhoto - http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/   
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	// form validate - http://docs.jquery.com/Plugins/Validation
	$("#newsletterForm").validate();

}); 
 
