$(document).ready(function(){
	
	// Search strings:
	$(".email", this).focus(function(){
		searchquote = $(this).attr("data-text");
		if ($(this).attr("value") == searchquote){
			$(this).attr("value", "");
		}
	});
	
	$(".email").blur(function(){
		if ($(this).attr("value") == "" || $(this).attr("value") == " "){
			$(this).attr("value", searchquote);
		}
	});
	
	// Newsletter AJAX:
	$('.submit').live('click', function(e) {
		$.ajax({
			type: "POST",
			url: "newsletter.php",
			data: ({
				email : $('.email').attr('value'),
				ajax : 'true'
			}),
			success: function(msg) {
				alert(msg);
			}
		});
		
		e.preventDefault();
		
	});
	
	
	
	// Slideshow:
	$('#slideshow .panels .panel').hide();
	$(".tabs ul").tabs("#slideshow .panels .panel", {
        effect: 'fade', 
        fadeOutSpeed: 1000,
		fadeInSpeed: 1000,
        rotate: true 
    }).slideshow({ autoplay: true, interval: 5000, clickable: false });
	
});
