﻿
// ArtRich.ru  модуль производители

$(document).ready(
function(){

$("#table-brands td").hover(
	function(){
if($(this).attr('className') != 'brands-td-active')$(this).attr('className', 'brands-td-hover');
}, function(){
if($(this).attr('className') != 'brands-td-active')$(this).removeAttr('className');
}).click(
function(){
 if( $("#brands-content").attr('rel') ) return false;// защита от быстрых кликов
var id = $(this).attr('rel');
$("#table-brands td").removeAttr('className');
$(this).attr('className', 'brands-td-active');
if( !id ) return false;
$("#brands-content").html('<img src="images/brands-load.gif" alt="" align="absmiddle"> загрузка...');
$("#brands-content").attr('rel', '1');
setTimeout(function(){
get_brands(id);
}, 1000); 
});

});

function get_brands(id){
$.get('action.php',{
	action: 'brands',
	id: id
}, function(d){
	$("#brands-content").html(d).removeAttr('rel');
});
}
