// JavaScript Document
function sid()
{
	// ==UserScript==
// @name            IA Icon Changer
// @namespace       none
// @description     Changes the IA Favicon 
// @include        *.instantaction.com/*

// ==/UserScript==
	var link = document.createElement('link');
	link.setAttribute('rel', 'shortcut icon');
	link.setAttribute('href', 

// Change this to the site of the picture you want to use for an icon
	'..//images/favicon.ico');
	link.setAttribute('height', '16px');
	link.setAttribute('width', '16px');

	var head = document.getElementsByTagName('head')[0]; 
	head.appendChild(link);

	
	
	
	
/*	
	
document.getElementById("borderdiv").style.maxwidth = screen.width;
document.getElementById("borderdiv").style.maxheight = screen.height;
if(screen.width==800)
{
document.getElementById("borderdiv").style.left = 0+"px";
}
else if(screen.width==1024)
{
document.getElementById("borderdiv").style.left = 43+"px";	
}
else if(screen.width==1152)
{
document.getElementById("borderdiv").style.left = 100+"px";	
}
else if(screen.width==1280)
{
document.getElementById("borderdiv").style.left = 165+"px";	
}
else if(screen.width==1400)
{
document.getElementById("borderdiv").style.left = 210+"px";	
}
else if(screen.width==1440)
{
document.getElementById("borderdiv").style.left = 250+"px";	
}
*/
}
