﻿var bg;
var timeout = 0;
$(document).ready(function(){

    $('.style a').click(function(){
        ga_trackEvent('Navigation','BestSelling');
    });

    /*
    $('.categoryProducts img').hover(function(){
        bg = $(this).parent().parent().parent().parent().parent().parent().css('background-color');
        $(this).parent().parent().parent().parent().parent().parent().css('background-color','#e1eeff');
    }, function(){
        $(this).parent().parent().parent().parent().parent().parent().css('background-color',bg);
    });
    
    $('.style').hover(function(){
        bg = $(this).css('background-color');
        $(this).css('background-color','#e1eeff');
    },function(){
        $(this).css('background-color',bg);
    });
    */
});
