$(document).ready(function(){
	   
	   
		   $("#scroll").jCarouselLite({
			    auto: 3000,
			    speed: 1000,
			    visible: 7.4
			    
			});

	   $(".delete").click(function(){
	   		return confirm('Are you sure you want to delete this car?')
	   })
	   
	   $("#contact").submit(function(){
      $("#contact input[name='spam']").val("2");
	});
		
		
		var s='type what you are looking for, e.g. make, model, fuel type or feature';
		$(".search").val(s);
		
		$(".search").focus(function(){
			$(this).val('');
		});
		
		$(".search").blur(function(){
	       if($(this).val()=='')
	       {
	          $(this).val(s);
	       }
	    });
    

	   
});

