$(document).ready(function()
{

$(".cbox").colorbox({"maxHeight":"100%","maxWidth":"100%"});

if ($.browser.msie) $sdet="block"; else $sdet="table-cell";
$('.details').bind('click', function() {
	$pid=$(this).attr("id");
	$('.pcell').each(function(id){
		if ($(this).attr("id")==$pid) {
			if ($(this).css("display")=="none") {$(this).css("display",$sdet)} else {$(this).css("display","none")};
		};
	});
  });
});


