
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		corner_home_over = newImage("http://love-productions.com/images/pink/corner-home_over.gif");
		home_over = newImage("http://love-productions.com/images/pink/home-over.gif");
		design_home_over = newImage("http://love-productions.com/images/pink/design-home_over.gif");
		portfolio_home_over = newImage("http://love-productions.com/images/pink/portfolio-home_over.gif");
		about_home_over = newImage("http://love-productions.com/images/pink/about-home_over.gif");
		projects_home_over = newImage("http://love-productions.com/images/pink/projects-home_over.gif");
		journal_home_over = newImage("http://love-productions.com/images/pink/journal-home_over.gif");
		contact_home_over = newImage("http://love-productions.com/images/pink/contact-home_over.gif");
		bottom_home_over = newImage("http://love-productions.com/images/pink/bottom-home_over.gif");
		preloadFlag = true;
	}
}

  function openWindow(url, w, h) {
    var options = "width=" + w + ",height=" + h + ",";
   	options += "resizable=yes,scrollbars=yes,status=yes,";
    options += "menubar=no,toolbar=no,location=no,directories=no";
   	var newWin = window.open(url, 'newWin', options);
  		newWin.focus();
	}
function OpenPopup (c) {
    window.open(c,
                    'popup',
                    'width=520,height=520,scrollbars=yes,status=yes');
}
