$(window).load(function(){
	$("a.newWindow").click(function(){window.open(this.href); return false;});
});
// JavaScript Document
(function(){	
	jQuery.fn.twoColumn = function() {		
		/*var colOneHeightInt = 0;
		var colTwoHeightInt = 0;
		var totHeight = 0;
				
		return this.each(function(i){
			var itemLength = $(this).siblings().length;
			var halfWay = (itemLength / 2);
			

			$(this).css(	{ 	"width" : "50%",
								"position": "relative"
							});			
	
			if(i <= halfWay)
			{	colOneHeightInt += $(this).innerHeight();
			}
			else
			{	colTwoHeightInt += $(this).innerHeight();
				var colOneHeightStr = "-" + colOneHeightInt+ "px";
				$(this).css(	{ 	"left": "50%",
									"top" : colOneHeightStr
								});
			}
			if(i == $(this).siblings().length)
			{	
				totHeight = ($.browser.msie && $.browser.version == 6.0)? 96: Math.floor($(this).parent().height() - colTwoHeightInt);
				
				
alert("$(this).parent().height(): " +$(this).parent().height() + " totH: " + totHeight + " colTwoHeightInt: " + colTwoHeightInt);
alert("$.browser.version: " +$.browser.version);
				$(this).parent().css(
				{ 	"height": totHeight
				});
alert("$(this).parent().height(): " +$(this).parent().height());
			}
		});*/
		
	};
})();


