//add Event
$(document).ready(function() {

//จัดการสีของตาราง -----------------------------------------------------
$('#managerTable tr:odd').css({"background-color":"#F7F7F7"});
$('#managerTable tr:odd').mouseover(function(){$(this).css({"background-color":"#D2D2D2"})});
$('#managerTable tr:odd').mouseout(function(){$(this).css({"background-color":"#F7F7F7"})});


$('#managerTable tr:even').css({ "background-color":""});
$('#managerTable tr:even').mouseover(function(){$(this).css({ "background-color":"#D2D2D2"})});
$('#managerTable tr:even').mouseout(function(){$(this).css({ "background-color":""})});
//จัดการสีของตาราง -----------------------------------------------------

$(".colorbox").colorbox();
$(".iframe").colorbox({width:"650px", height:"550px", iframe:true});

});