var url_root="/";

var lightbox_options=
{
			imageLoading:			url_root+'images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			url_root+'images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			url_root+'images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			url_root+'images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				url_root+'images/lightbox-blank.gif'			// (string) Path 	
};

function resizeMain()
{
	var main=$("#main");
	var footer=$("#footer");
	main.css("height","");	
	var diff=$(window).height()-(footer.offset().top+footer.height());
	if(diff>0) main.css("height",(main.height()+diff)+"px");
}


window.onresize=resizeMain;
