
function adArray() {
 for (i=0; i*2<adArray.arguments.length; i++) {
  this[i] = new Object();
  this[i].src = adArray.arguments[i*2];
  this[i].href = adArray.arguments[i*2+1];
 }
 this.length = i;
}
function getAdNum() {
 dat = new Date();
 dat = (dat.getTime()+"").charAt(8);
 if (dat.length == 1)
  ad_num = dat%ads.length;
 else
  ad_num = 0;
 return ad_num;
}
var ads = new adArray(
"http://www.quilledcreations.com/quillingforum/images/styles/quill/Logo-rotate-1.jpg","",
"http://www.quilledcreations.com/quillingforum/images/styles/quill/Logo-rotate-2.jpg","",
"http://www.quilledcreations.com/quillingforum/images/styles/quill/Logo-rotate-3.jpg","",
"http://www.quilledcreations.com/quillingforum/images/styles/quill/Logo-rotate-4.jpg","",
"http://www.quilledcreations.com/quillingforum/images/styles/quill/Logo-rotate-5.jpg","",
"http://www.quilledcreations.com/quillingforum/images/styles/quill/Logo-rotate-6.jpg","",
"http://www.quilledcreations.com/quillingforum/images/styles/quill/Logo-rotate-7.jpg","",
"http://www.quilledcreations.com/quillingforum/images/styles/quill/Logo-rotate-8.jpg","");


var ad_num = getAdNum(); 
document.write('<IMG SRC="'+ads[ad_num].src+'" '
+'BORDER=0 name=js_ad>');
link_num = document.links.length-1;
function rotateSponsor() {
 if (document.images) {
  ad_num = (ad_num+1)%ads.length;
  document.js_ad.src = ads[ad_num].src;
  
  setTimeout("rotateSponsor()",2000); //was 4000
 }
}
setTimeout("rotateSponsor()",2000);


var warning="Copyright ©2008 Quilled Creations, All rights reserved.";
function click( e ) 
{
	if ( document.all ) 
	{
		if ( event.button==2 || event.button==3 ) 
		{
			alert( warning );
			return false;
		}
	}	    
	if ( document.layers ) 
	{
		if ( e.which == 3 ) 
		{
			alert( warning );
			return false;
		}
	}
}
if ( document.layers ) 
{
	document.captureEvents( Event.MOUSEDOWN );
}

document.onmousedown = click;

