//jQuery.noConflict();
/*jQ().ready(function(){
	if (jQ.browser.msie){
		var nH = jQ("#column").height();
		var nH2 = jQ("#column2").height();
		var nH3 = 0;
		if (nH>=nH2){
			nH3 = nH;
		}else{
			nH3 = nH2
		}
		jQ("#mainContent").height(nH3+20);
		jQ("#column").height(nH3);
		jQ("#column2").height(nH3);
	}
});*/
jQ(document).ready(function(){
	
	window.setInterval(function (){
	
		if (jQ.browser.msie){
			var nH = jQ("#column").height();
			var nH2 = jQ("#column2").height();
			var nH3 = 0;
			if (nH>=nH2){
				nH3 = nH+20;
			}else{
				nH3 = nH2+20
			}
			jQ("#mainContent").height(nH3);
			jQ("#column").height(nH3);
			jQ("#column2").height(nH3);
			//jQ("p.txtLinks").html ("H1: " + nH3);
		}else{
			var cHeight = jQ("#mainContent").height();
			//jQ("#column").height(cHeight-20);
			//jQ("#column2").height(cHeight);
			//jQ("p.txtLinks").html ("H2: " + cHeight);
			//alert(cHeight);
		}
	
	}, 500);
	
	jQ("#column2 ul").each (function (){
		jQ(this).find("li:first").css ('border-top-width','0px')
		jQ(this).find("li:last").css ('border-bottom-width','0px')
	})
	jQ(".content .content_inside .content_inside2").corner("top 5px").parent().css('padding', '1px 1px 0').corner("top 6px")
	jQ(".round_pane .round_Inside .round_Inside2").corner("round 5px").parent().css('padding', '1px').corner("round 6px")
	
	//alert("H");
})