$(document).ready(function() {
	$("#slider").coinslider({ 
		width: 901,
		height: 310,
		spw: 10,
		sph: 7,
		links : false,
		hoverPause: false, 
		effect: 'rain'
	});
	
	$('.auto-hint').each(function(i, el){
		if($(this).val() == ''){
			$(this).val($(this).attr('title'));
		}
		$(el).focus(function(){
			if ($(this).val() == $(this).attr('title')) {
				$(this).val('');
			}       
		});
		$(el).blur(function(){
			if ($(this).val() == '') {
				$(this).val($(this).attr('title'));
			}
		});
	});
});
