;
(function($) {
	$(document).ready(function() {
		$('.newsletter-form input.text[title]').each(function() {
			if ($(this).val() === '') {
				$(this).val($(this).attr('title'));
			}
			$(this).focus(function() {
				if ($(this).val() === $(this).attr('title')) {
					$(this).val('').addClass('focused');
				}
			});
			$(this).blur(function() {
				if ($(this).val() === '') {
					$(this).val($(this).attr('title')).removeClass('focused');
				}
			});
		});
		var $container = $('#home-slide').cycle( {
			fx : 'fade',
			timeout : 2000,
			speed : 2000,
			pause : 1
		});
	});
})(jQuery);
