/*
 * Wizzard Bulgaria
 * http://www.wizzard.bg
 */
 
$(function() {
  
  // Catalogue Overview navigation
  $('#catalogue_overview td').hover(
    function() {
      $(this).addClass('active_cell')
    },
    function() {
      $(this).removeClass('active_cell')
    }
  ).click(function() {
      window.location = $(this).children('a').attr('href')
  })
    
})
