// JavaScript Document
$(document).ready(function(){
	$('ul.actions-list li strong a').bind('click', function(){
		$('ul.actions-list li > div').css('display', 'none');
		$('div.last').css('display', 'none');
		if ($(this).attr('href') == '/dealers/articles/') {
			$('div.last').css('display', 'block');
		} else {
		    $(this).parents('li').children('div').css('display', 'block');
		}
		return false;
	});
	
	if ($('div.ico-list a').length > 0) {
	    $('div.ico-list a').tooltip({
  		    track: true,
			fade: 250,
		    showURL: false,
  		    opacity: 0.85
	    });
	    $('div.ico-list a img').attr('alt', '');
	}
});

function show_login() {
	$('#lb').show();
}

function change_area() {
	if ($('select[name=f_Area]').val() == '21') {
		$('div#area_custom').show('fast');
	} else {
		$('input[name=f_AreaCustom]').val('');
		$('div#area_custom').hide('fast');
	}
}

function change_knowfrom() {
	if ($('select[name=f_KnowFrom]').val() == '6') {
		$('div#knowfrom_custom').show('fast');
	} else {
		$('input[name=f_KnowFromText]').val('');
		$('div#knowfrom_custom').hide('fast');
	}
}


function change_firm() {
	if ($('select[name=f_OtherFirms]').val() == '14') {
		$('div#firms_custom').show('fast');
	} else {
		$('input[name=f_OtherFirmsText]').val('');
		$('div#firms_custom').hide('fast');
	}
	
}






