$(document).ready(function() {
	// Testimonials
	$('#testimonial').cycle({
        fx:     'scrollVert',
        speed:  'slow',
        timeout: 3000,
        prev:    '#prev',
        next:    '#next'
    	});
	// Subscription
	var newsauthor = $("#newsauthor");
	var newsauthorD = "Nominativo";
	
	newsauthor.focus(function(){
		if($(this).attr("value") == newsauthorD) $(this).attr("value", "");
	});
	newsauthor.blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", newsauthorD);
	});
	var newsemail = $("#newsemail");
	var newsemailD = "Email";
	
	newsemail.focus(function(){
		if($(this).attr("value") == newsemailD) $(this).attr("value", "");
	});
	newsemail.blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", newsemailD);
	});	
});
