jQuery(document).ready(function(){
	$('#compatibility_brand').change(function(){
		$.get('compatibilita_modelli.php', {CodiceMarca: $(this).children('option:selected').val()}, function(response_html) {
			$('#compatibility_model').html(response_html);
		});
	});

	$('#compatibility_model').change(function(){
		var codice_modello = $(this).children('option:selected').val();
		if (codice_modello) {
			$(this).parents('form').submit();
		}
	});

	$('#header_bnt_login').click(function(){
		$(this).unbind('click');
		$(this).css({opacity: '0.50', cursor: 'default'});
		doLogin();
	});

	$('#header_bnt_logout').click(function(){
		$(this).unbind('click');
		$(this).css({opacity: '0.50', cursor: 'default'});
		doLogout();
	});

	if ($('#homeanimation').text()) {
		$('#homeanimation').flash(
			{
				src: 'swf/cartucce.swf',
				width: 719,
				height: 318
			},
			{
				expressInstall: true
			}
		);
	}
});

function doLogin() {
	var theForm = document.header_login_form;
	theForm.submit();
	return(true);
}

function doLogout() {
	document.location.href = 'catalogo_logout.php';
	return(true);
}