Images = new Array();

Images[0]= "http://digicool.org/wp/wp-content/themes/tra4/images/main_bg_high.jpg";
Images[1]= "http://digicool.org/wp/js/prettyPhoto/images/prettyPhoto/tl.gif";
Images[2]= "http://digicool.org/wp/js/prettyPhoto/images/prettyPhoto/tr.gif";
Images[3]= "http://digicool.org/wp/js/prettyPhoto/images/prettyPhoto/bl.gif";
Images[4]= "http://digicool.org/wp/js/prettyPhoto/images/prettyPhoto/br.gif";

Images[5]= "http://digicool.org/wp/wp-content/themes/tra4/images/recent_comm_bg.gif";
Images[6]= "http://digicool.org/wp/wp-content/themes/tra4/images/popular_post_bg.gif";

function PreloadImg(){
	for(i=0; i<Images.length; i++){
		ImageName = "Image"+ i;
		var ImageName = new Image();
		ImageName.src = Images[i];
	}
}