$(function(){
	$(".carousel .textwidget").jCarouselLite({
		btnNext: "#green-slide-next",
		btnPrev: "#green-slide-pre",
		auto: 5000,
		speed: 1000,
		visible: 1
	});
	
	$('#btn-reset').each(function(){
		$(this).click(function(){
			$parent = $(this).parents('.submit-form');
			
			$parent.find('#txt-name, #txt-email, #txt-subject, #txt-msg').each(function(){
				$(this).val($(this).attr('title'));
				$(this).addClass('watermark');
			});
			
		});
	});
	
});


