// mouseover

	var nrm_social = new Array();
	var omo_social = new Array();
	
	var stuff_social = new Array('twitter','facebook');
	
	// Pre-load part.
	
	if (document.images)
	{
		for (i=0;i<stuff.length;i++)
		{
			nrm_social[i] = new Image;
			nrm_social[i].src = base_social + stuff_social[i] + "0.gif"
			omo_social[i] = new Image;
			omo_social[i].src = base_social + stuff_social[i] + "1.gif";
		}
	}
	
	
	// The functions: first mouseover, then mouseout
	
	function over_social(no)
	{
		if (document.images)
		{
			document.images[stuff_social[no]].src = omo_social[no].src
		}
	}
	
	function out_social(no)
	{
		if (document.images)
		{
			document.images[stuff_social[no]].src = nrm_social[no].src
		}
	}
	
