// JavaScript Document

//used in Categories Landing pages 

window.addEvent('domready', function() {
									 
	
	/* For each drop box, add an onchange event that redirect to the href of the above section and adds the locale + model name*/
	
	var models = $$('.models');
	models.each( function(Drop, i){
		Drop.onchange=function(){
			var parentlink = Drop.getParent().getPrevious().getPrevious().getChildren().get('href');
			var mod = Drop.getSelected();
			var model = mod[0].get('html');
		//	window.parent.location= parentlink + "?site=" + odw + "&m=" + model;
		window.parent.location= parentlink + "&m=" + model;
				}	
	});
// Omniture override

});
