$(document).ready(function(){
	
	// Change types when another brand is selected
	$('#merkSelector').change( function(e){
		xajax_getTypes(this.value);
		e.preventDefault();
	});
	
	// Open links in external window with rel="external"
	$('a[rel*="external"]').live('click',function(){ 
		this.target='_blank'; 
	});
	
	$('.submitter').change(function(e){
		this.form.submit();
		e.preventDefault();
	});
});