jQuery(document).ready(function(){
var blnOut = true;

if($.browser.msie){
$("#showPanel").click(function(){
if (blnOut)
    $("#colleft").animate({width:"800px"}, 400 );
else
    $("#colleft").animate({width:"0px"}, 400 );
    
blnOut = !blnOut;
});
}else{
$("#showPanel").click(function(){
if (blnOut)
    $("#colleft").css({opacity:"0.0"}).animate({width:"800px",opacity:"1.0"}, 400 );
else
    $("#colleft").animate({width:"0px",opacity:"0.0"}, 400 );
    
blnOut = !blnOut;
});
}
});





