/* Vehicle Search Cosmetics */
jQuery(document).ready(function() {
	jQuery('.searchform-input-wrapper select[name=cs-Rental-1] option').each(function() {
		var originalContent = jQuery(this).html();
		if (originalContent == 10000) {
			jQuery(this).html('Unlimited Budget');
		} else if (originalContent == 999999) {
			jQuery(this).html('ANY');
		} else {
			jQuery(this).html('up to &pound;' + originalContent + ' p.c.m.');
		}
	});
	jQuery('.searchform-input-wrapper select').show();

	jQuery('#quoteFormToggle').toggle(function() {
		jQuery('#quoteForm form').stop(true, true).fadeIn('slow');
		jQuery('#toggleIndicator').html('&uarr;');
		jQuery('#toggleHelp').html('(click to hide)');
	}, function() {
		jQuery('#quoteForm form').stop(true, true).fadeOut('fast');
		jQuery('#toggleIndicator').html('&darr;');
		jQuery('#toggleHelp').html('(click to reveal)');
	});
});
