$(document).click(function()
{
    //HACK: for safari browser
    //Resize function of the list items holder is specifically overriden to hide the drop down list if it is shown and the document is clicked
    
    if(jQuery.browser.safari)
        $(".comboboxDropDownContainer:visible").trigger("resize");
});
