var $j = jQuery.noConflict();
$j(document).ready(function(){
	
	// Hide all of the descriptions //
	$j(".information_driver").css('display','none');
	
	// Give the info image a link cursor //
	$j(".info_driver").css('cursor','pointer');
	
	// Get the the id of the info button, get the number, and use this to toggle the description //
	$j(".info_driver").click(function() {
		var id = $j(this).attr('id');
		var newid = "information_driver"; //  + id.substr(4);
		$j("." + newid).animate({height: 'toggle', opacity: 'toggle'}, "slow");		
	});
	
	// Hide all of the descriptions //
	$j(".information_document").css('display','none');
	
	// Give the info image a link cursor //
	$j(".info_document").css('cursor','pointer');
	
	// Get the the id of the info button, get the number, and use this to toggle the description //
	$j(".info_document").click(function() {
		var id = $j(this).attr('id');
		var newid = "information_document"; //  + id.substr(4);
		$j("." + newid).animate({height: 'toggle', opacity: 'toggle'}, "slow");		
	});
	
});
