
function initPage() {
	MM_preloadImages('../artwork/index_r5_c2_f2.jpg','../artwork/index_r5_c3_f2.jpg','../artwork/index_r5_c4_f2.jpg','../artwork/index_r5_c7_f2.jpg','../artwork/index_r5_c8_f2.jpg','../artwork/index_r5_c12_f2.jpg');
}

function checkParent() {
	/*
	var str = '';
	str += "document.location         " +' = ' + document.location + '\n';
	str += "window.location           " +' = ' + window.location + '\n';
	str += "parent.location           " +' = ' + parent.location + '\n';
	str += "document.location.search  " +' = ' + document.location.search + '\n';
	str += "window.location.search    " +' = ' + window.location.search + '\n';
	str += "parent.location.search    " +' = ' + parent.location.search + '\n';
	*/
	if (parent.location==window.location) {
		var newLocation = '../'+window.location.search;
		//str += "newLocation               " +' = ' + newLocation + '\n';
		//alert(str);
		window.location = newLocation;
		
	}else{
		//alert(str);
	}

	
}
