$(document).ready(function(){
    
	$("#apply_online_now").click(function () {
		$("#apply_online").toggle("slow");
	});    
	
	$(".close-text").click(function (){
		$(".flash").slideUp();
	});

	$('input[title]').each(function() {
		if($(this).val() === '') {
			$(this).val($(this).attr('title'));
		}
	});
	
	$('input[title]').each(function() {
			$(this).hover(function() {
				$(this).val('');
			}, function() {
				// Stuff to do when the mouse leaves the element;
			});
	});

	
});


$(function() {
		$("#slider-range").slider({
			range: true,
			min: 0,
			max: 500,
			values: [75, 300],
			slide: function(event, ui) {
				$("#amount").val('$' + ui.values[0] + ' - $' + ui.values[1]);
			}
		});
		$("#amount").val('$' + $("#slider-range").slider("values", 0) + ' - $' + $("#slider-range").slider("values", 1));
	});
	</script>


