// 7/8/09 - commented out this code; the border and background image are now handled by div id=wrapper-wrapper
// 7/1/09 - implemented noConflict due to a conflict with lightbox2 see: http://forums.obdev.at/viewtopic.php?f=6&t=2951
/*
jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery(window).load(
	    function() {
		    // calculate height for #container to position background image and draw borders
		    // use window.load to make sure images are loaded first before calculating height
			var foo = jQuery('#content-wrapper').height();
			//alert(foo);
			jQuery('#container').height(foo);
			jQuery('#container').css({'border-width' : '1px' });
	    }
	);
});
*/
