/* Zipzoomfly.com Navigation drop down menu ver. 2.0
 * For Top Drop down menu.
 * Activate drop down menu for browsers that do not support full CSS 2
 * CSS Definition File List : header.css, fixedie.v1.css
 *
 *  */

$(function(){


$('#haTabStoreMenu td').hover(

function(){
$(this).addClass('over');
//console.log("Is over menu tab:" + $(this).find('img').attr('alt'));
},
function(){
$(this).removeClass('over');
//console.log("Is out menu tab:" + $(this).find('img').attr('alt'));
});

});