// JavaScript Document

jQuery.noConflict();

//kod poprawiający zachowanie thickbox pod Operą

function tb_remove()
{
jQuery("#TB_imageOff").unbind("click");
jQuery("#TB_closeWindowButton").unbind("click");
jQuery("#TB_window").fadeOut("fast",function()
{
jQuery("#TB_overlay").slideUp("slow", function()
{
jQuery('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();
});
});
jQuery("#TB_load").remove();
if (typeof document.body.style.maxHeight == "undefined")
{
jQuery("body","html").css({height: "auto", width: "auto"});
jQuery("html").css("overflow","");
}
document.onkeydown = "";
document.onkeyup = "";
return false;
}
