// JavaScript Document

/*
bgc = new Array();
bgc[0] = "url(images/top_bg01.jpg)";
bgc[1] = "url(images/top_bg02.jpg)";
bgc[2] = "url(images/top_bg03.jpg)";
n = Math.floor(Math.random()*bgc.length);
document.getElementById("wrapper").style.backgroundImage  = bgc[n]; 
*/


	jQuery(function($) { 
		$('#headerOuter').bgSwitcher({ 
		
		images: ['images/top_bg01.jpg', 'images/top_bg02.jpg', 'images/top_bg03.jpg'], 
        
		interval: 6000,
		
		duration: 500
		
		});
		
		$('#contentsOuter').bgSwitcher({ 
		
		images: ['images/top_bg01_under.jpg', 'images/top_bg02_under.jpg', 'images/top_bg03_under.jpg'], 
        
		interval: 6000,
		
		duration: 500
		
		});
		
	});

