﻿
// handle onload 
$(document).ready(function(){

// handle clicking a brand in the selector dropdown
	$("#brand-selector-menu select").change(function(){ 
		location = this.value;
		return false;
	});

});
