jQuery(document).ready(function(){
	$("input[name='KEYMODELLO'],input[name='KEYOEM']").height(16);

	$("input[name='KEYMODELLO'],input[name='KEYOEM']").keypress(function (e) {
		if (e.which == 13) {
			if ($(this).attr('name') == 'KEYMODELLO') text_submit('modello');
			if ($(this).attr('name') == 'KEYOEM') text_submit('oem');
		}
	});

	if ($("select[name='IDCODICEMODELLO']").children('option').length > 1) {
		$("select[name='IDCODICEMODELLO']").parent().pulse({
			backgroundColors: ['#B05A9F','#A9BACB'],
			speed: 700
		});
	}

	$('table.articlestbl *[title], .carbutton *[title], .rightcar *[title]').tooltip({
		delay: 0,
		showURL: false
	});

	$('table.filterstbl *[title]').tooltip({
		delay: 0,
		showURL: false
	});
});