
$(document).ready(function() {

	//var clearGif = $("img[@src=clear.gif]").attr('height','10').height(1).css('border','1px solid');
	var clearGif = $(".imgtext-table img[@src=clear.gif]").css('border','0px solid').css('height','0').css('width','0');
	//alert(clearGif);
});


/*******************this script fix the firefox auto-height issue*************************/
// $(document).ready(function() {
// 
// 	var contentRow = $("#content-row").height();
// 	var subcontentRow = $("#subnormal-content").height();
// 	var diffHeight;
// 	
// 	if(subcontentRow > contentRow && subcontentRow != null){
// 		diffHeight = subcontentRow - contentRow;
// 		diffHeight = diffHeight + contentRow;
// 		$("#content-row").height(diffHeight);
// 	}
// 
//  
// });


/*******************this script fix the firefox auto-height issue*************************/
// $(document).ready(function() {
// 
// 	var rightCol = $("#right-col-sub").height();
// 	var leftCol = $("#left-col-sub").height();
// 	var contentRow = $("#content-row").height();
// 	var browser = $.browser.mozilla;
// 	var diffHeight;
// 	var choseHeight;
// 
// if($.browser.mozilla == true)
// {
// 	
// 	if(rightCol != null || leftCol != null)	{
// 		if(rightCol == leftCol && contentRow > rightCol  && contentRow > leftCol ){
// 			choseHeight = contentRow;
// 		}
// 		else if(rightCol > leftCol){
// 			choseHeight = rightCol+ 30;
// 		}
// 		else if(leftCol > rightCol){
// 			choseHeight = leftCol+ 30;
// 		}
// 		else{
// 			//do nothing
// 		}
// 		
// 		choseHeight = choseHeight - contentRow;
// 		choseHeight = choseHeight + contentRow ;
// 		$("#content-row").height(choseHeight);
// 	}
// }
// 
// });
// 

// function autoheight(){
// var a = document.getElementById("content-row").offsetHeight - 90;
// var x=document.getElementById('left-col').rows
// x[0].height= a
// }
