// JavaScript Document

var doc=document;

function mouse(style) {
	doc.body.style.cursor=style;
}

function preloadImg() {
	if(doc.images){
		doc.p=new Array();
   		var i,j=doc.p.length,a=preloadImg.arguments;
		for(i=0; i<a.length; i++){
			doc.p[j]=new Image;
			doc.p[j++].src=a[i];
		}
	}
}

function swapImg(id,img) {
  $(id).src=img;
}
