function MM_openBrWindow(theURL,winName,features) { //v2.0
          window.open(theURL,winName,features);
}
$(document).ready(function(){ 
        $(".price tr:odd").addClass("odd");
        $(".price tr:even").addClass("even");
        
        $('.pop').click(function(event){
                var img = $(this).attr('img');
                var title = $(this).html();
                tb_show (title, 'img/'+img);
                //MM_openBrWindow('img/'+img, title, 'width=520,height=400');
                });
        $('.odd').hover(
                function(){
                        $(this).css('background', '#EAE8E8');
                },
                function() {
                        $(this).css('background', '#F5F5F5');
                }
                );

        $('.even').hover(function(){
                        $(this).css('background', '#FADEDE');
                },
                function() {
                        $(this).css('background', '#FFFFFF');
                }
                );

});
