$(document).ready(function(){ // wait for the DOM to load, then:

	$('#slideshow').innerfade({ 	// More info: : http://medienfreunde.com/lab/innerfade/
		animationtype: 'fade',		// Type of animation 'fade' or 'slide' (Default: 'fade')
		speed: 800,				// Fading speed in milliseconds or keywords (slow, normal or fast) (Default: 'normal')		
		timeout: 6000, 				// Time between the fades in milliseconds (Default: '2000')
		type:'sequence', 			// Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence')
		containerheight:'270px' 	// Height of the containing element in any css-height-value (Default: 'auto')
	});
	
	$('#name').val('Your Name');
	
	$('#email').val('Your Email');
	
	$('#email-subscribe').val('Email Address');
	
	$('.grey').click(
	function(){
		$(this).val('');
	});
	
	$('.wpcf7-submit').hover(
		function(){
			$(this).css('background-image','url(/wp-content/themes/redshi/images/send-on.jpg)');
		},
		function(){
			$(this).css('background-image','url(/wp-content/themes/redshi/images/send-off.jpg)');
		}
	);
	
}); 

