//SiteWeave Services -General JS 
//--------Load images with standard path/filename

function preloadImages() { 
  if(document.images){ 
 document.preload=new Array();
    		var i,
		j=document.preload.length,
		a=preloadImages.arguments;//arguments in onload - body tag 
		for(i=0; i<a.length; i++)
    { document.preload[j]=new Image; document.preload[j++].src=a[i];}}
};

//---------EoFn

function rollOver(img_name,img_src){
 if(document.images){
document[img_name].src=img_src;
}
};

function rollOut(img_name,img_src) {
if(document.images){
document[img_name].src=img_src;
}
};

//---------EoFns
//---------open detail windows

function detailWindow(url){

if(document.images){
detailwin=window.open(url,'win1','width=750,height=600,resizable=1,scrollbars=1,fullscreen=yes');
detailwin.focus()
}
}


//----------EoFns
