var statusDiv = 1;


function showImageHeight(idDiv, idImg, path){
	if(statusDiv == 1 ){
                document.getElementById(idImg).src=path+"/images/Show.gif"; 
                $('#'+idDiv).animate({height: "hide"}, "slow");
                statusDiv = 0;
	}
	else{
	    document.getElementById(idImg).src=path+"/images/Hide.gif";	            
	    $('#'+idDiv).animate({height: "show"}, "slow"); 
            statusDiv = 1;
	}
}
function showImageWidth(idDiv, idImg, path){
	if(statusDiv == 1 ){		
		document.getElementById(idImg).src=path+"/images/Show.gif";		
		$('#'+idDiv).animate({width: "hide"}, "slow");                                 
                if (document.getElementById("menu") != null) {                  
                  document.getElementById("menu").width="10px";
                }
                statusDiv = 0;
	}
	else{	            
	    document.getElementById(idImg).src=path+"/images/Hide.gif";	
	    $('#'+idDiv).animate({width: "show"}, "slow");            
            if (document.getElementById("menu") != null) {                  
                  document.getElementById("menu").width="200px";
                }
            statusDiv = 1;            
	}
}