//jQuery on dom ready
$(function(){	
	// is there any hyperlinks to open in a new window
	$('a.newwintrue').click(function(e) {
		e.preventDefault();
		window.open($(this).attr('href'));
	});
	
	// form autosubmit
	$('.autosubmit select').change(function(){
		$(this).parents('form').eq(0).submit();
	})
})
