$_typeLamp = new Array();
$_typeLamp[1] = 'лампы накаливания';
$_typeLamp[2] = 'галогенной лампы';
$_typeLamp[3] = 'энергосберегающей лампы';
$_typeLamp[4] = 'люминесцентной лампы';
$_typeLamp[5] = 'газоразрядной лампы';
$_typeLamp[9] = 'светодиодной лампы';
$(document).ready(function(){
	$('div.lInfo').tooltip({
		bodyHandler: function() {
			var _curD = $(this).attr('rel');
			if (parseInt(_curD)<=9) {return ('Мощность используемой<br><b>'+$_typeLamp[_curD]+'</b>');}
			else {return ('Мощность лампы');}
		},
		track: true,
		delay: 0,
		showURL: false,
		positionLeft: true
	});
	$('table.cInfo').tooltip({
		bodyHandler: function() {
			var _curD = $(this).attr('rel');
			if (parseInt(_curD)==999) {return ('Цоколь лампы');}
			else {return ('Цоколь используемой лампы');}
		},
		track: true,
		delay: 0,
		showURL: false,
		positionLeft: true
	});

	$('a.brandNavFirst').mouseover(function(e){
		$(this).parent().addClass('navColor3');
	});
	$('a.brandNavFirst').mouseout(function(e){
		$(this).parent().removeClass('navColor3');
	});

	$('a.brandListExt').click(function(e){
			var _curD = $(this).attr('rel');
			$("div#ext"+_curD).slideDown('fast');
			$(this).remove();

			return false;
	});

	if (jQuery.browser.msie && jQuery.browser.version < 9) $(".radius5").corner("5px");
});
