$(document).ready(function(){

	$( '#auto').click(function(event){
		event.preventDefault();
		$('#auto_quote').slideToggle("slow")
		
	});
	$( 'a.toggleme1', this).click(function(){
		
		$('#driver2').slideToggle("slow")
	
		
	});
	$( 'a.toggleme2', this).click(function(){
		
		$('#driver3').slideToggle("slow")
	
		
	});
	$( 'a.toggleme3', this).click(function(){
		
		$('#driver4').slideToggle("slow")
	
		
	});
	$( 'a.toggleme4', this).click(function(){
		
		$('#car2').slideToggle("slow")
	
		
	});
	$( 'a.toggleme5', this).click(function(){
		
		$('#car3').slideToggle("slow")
		
		
	});
	$( 'a.toggleme6', this).click(function(){
		
		$('#car4').slideToggle("slow")
		
		
	});

	
});

