jQuery(document).ready(function() {
	populate_select(jQuery('#f_galleries_make'), makes);
	jQuery('#f_galleries_make').change(function() {
		target = jQuery('#f_galleries_model').empty();
		make = this.value;
		for (model_key in makes[make]) {
			model = makes[make][model_key]['_'] || model_key;
			if (makes[make][model_key]['g'])
				jQuery(target).append('<option value="'+ makes[make][model_key]['g'] +'">'+ model +'</option>');
		}
	});
	jQuery('#f_galleries .submit').click(function() {
		window.location = site_w_path +'galleries/'+ jQuery('#f_galleries_model').find('option:selected').attr('value') +'/';
	});
	
	populate_select(jQuery('#f_wallpapers_make'), wp_makes);
	jQuery('#f_wallpapers_make').change(function() {
		o = jQuery('#f_wallpapers_model').empty();
		populate_select(o, wp_makes[this.value]);
	});

	jQuery('#f_wallpapers .submit').click(function() {
		try {
			m = wp_makes
				[jQuery('#f_wallpapers_make' ).find('option:selected').attr('value')]
				[jQuery('#f_wallpapers_model').find('option:selected').attr('value')]
				['id'];
			if (m) jQuery.ajax({
				url:      site_w_path +'async/wallpaper.php',
				data:     'id='+ m,
				beforeSend:    function() {
					jQuery('#result').html('<p><img src="/img/loading.gif" alt="" /> Please wait...</p>');
				},
				success:  function(html) {
					jQuery('#result').hide().html(html).slideDown();
				}
			});
		}
		catch(e) {}
	});
	
});
wp_makes = {"BMW":{"Sport2012":{"_":"Sport 2012","id":"5190"}},"Ducati":{"Diavel2011":{"_":"Diavel 2011","id":"5131"},"Monster2011":{"_":"Monster 2011","id":"5143"},"Multistrada12002010":{"_":"Multistrada 1200 2010","id":"5025"},"Streetfighter2012":{"_":"Streetfighter 2012","id":"5187"}},"KTM":{"Enduro2008":{"_":"Enduro 2008","id":"1168"},"Supermoto2010":{"_":"Supermoto 2010","id":"5024"}},"Triumph":{"Roadsters2011":{"_":"Roadsters 2011","id":"5032"},"Touring2010":{"_":"Touring 2010","id":"5135"}},"Vespa":{"GTS2008":{"_":"GTS 2008","id":"1132"}},"Victory":{"Touring2012":{"_":"Touring 2012","id":"5196"}}}
