﻿
///<reference path="jquery.intellisense.js"/>

jQuery(document).ready(function() { 

    $(".poptbl_column").mouseover(function(){
        $(this).addClass("poptbl_hover");
    });
    
    $(".poptbl_column").mouseout(function(){
        $(this).removeClass("poptbl_hover");
    });

    $("poptbl_wrapper a").click(function(){
        alert($(this).attr("id"));
    })
});



