jQuery(document).ready(function(){
	$("input[name='KEYMODELLO'],input[name='KEYOEM'],input[name='KEYDAYTEK']").height(16);

	$("input[name='KEYMODELLO'],input[name='KEYOEM'],input[name='KEYDAYTEK']").keypress(function (e) {
		if (e.which == 13) {
			if ($(this).attr('name') == 'KEYMODELLO') text_submit('modello');
			if ($(this).attr('name') == 'KEYOEM') text_submit('oem');
			if ($(this).attr('name') == 'KEYDAYTEK') text_submit('daytek');
		}
	});

	if ($("select[name='IDCODICEMODELLO']").children('option').length > 1) {
		$("select[name='IDCODICEMODELLO']").parent().pulse({
			backgroundColors: ['#B05A9F','#A9BACB'],
			speed: 700
		});
	}

	$("select[name='CODICEMARCA']").change(function(){
		$("select[name='MACROCATEGORIA'] :first, select[name='CATEGORIASPECIALE'] :first, select[name='CODICEMODELLO'] :first, select[name='TIPOARTICOLO'] :first").attr('selected', 'selected');
	});

	$('table.articlestbl *[title], .carbutton *[title], .rightcar *[title]').tooltip({
		delay: 0,
		showURL: false
	});

	$('table.filterstbl *[title]').tooltip({
		delay: 0,
		showURL: false
	});

	$('#carrello_check_show_opener').click();
});
