jQuery(document).ready(function() {
	home_lead =
		new dynlead()
		.wrapper('dynlead');
	
	jQuery('#dynlead .lead').each(function() {
		if (this.id) home_lead.add(this.id);
	});
	home_lead
		.addControls()
		.addStroke()
		.init();

	populate_select(jQuery('#f_vehiculezone_make'), makes);
	jQuery('#f_vehiculezone_make').change(function() {
		o = jQuery('#f_vehiculezone_model').empty().append('<option value="" class="first">all models</option>');
		populate_select(o, makes[this.value]);
	});
	jQuery('#f_vehiculezone .submit').click(function() {
		try {
			make  = jQuery('#f_vehiculezone_make' ).find('option:selected').attr('value') || '' ;
			model = jQuery('#f_vehiculezone_model').find('option:selected').attr('value') || '' ;
			window.location = site_w_path +'search/?make='+ make +'&model='+ model;
		}
		catch(e) {}
	});
	
	jQuery('#news .first:has(.thumb)').css({minHeight:'75px'}).find('p:first').css({display:'block'});
});
