if (navigator.userAgent.toLowerCase().indexOf('applewebkit') == -1)
{
    // Main
	background_normal = new Image();
	background_normal.src = 'http://www.clanhost.nl/images/layout/form_main_background.gif';
	
	background_active = new Image();
	background_active.src = 'http://www.clanhost.nl/images/layout/form_main_background_active.gif';
	
	// Box
	background_box_username = new Image();
	background_box_username.src = 'http://www.clanhost.nl/images/layout/login_box_user_background.gif';
	
	background_box_username_active = new Image();
	background_box_username_active.src = 'http://www.clanhost.nl/images/layout/login_box_user_background_c.gif';
	
	background_box_password = new Image();
	background_box_password.src = 'http://www.clanhost.nl/images/layout/login_box_pass_background.gif';
	
	background_box_password_active = new Image();
	background_box_password_active.src = 'http://www.clanhost.nl/images/layout/login_box_pass_background_c.gif';
	
    function setBackgroundColor(id)
    {
        if (document.getElementById)
        {
            document.getElementById(id).style.background = 'url(http://www.clanhost.nl/images/layout/form_main_background_active.gif) repeat-x';
        }
    }
    
    function removeBackgroundColor(id, color)
    {
        if (document.getElementById)
        {
            document.getElementById(id).style.background = 'url(http://www.clanhost.nl/images/layout/form_main_background.gif) repeat-x';
        }
    }
    
    function setBoxUserBackgroundColor(id)
    {
        if (document.getElementById)
        {
            document.getElementById(id).style.background = 'url(http://www.clanhost.nl/images/layout/login_box_user_background_c.gif) center left';
        }
    }
    
    function removeBoxUserBackgroundColor(id)
    {
        if (document.getElementById)
        {
            document.getElementById(id).style.background = 'url(http://www.clanhost.nl/images/layout/login_box_user_background.gif) center left';
        }
    }
    
    function setBoxPassBackgroundColor(id)
    {
        if (document.getElementById)
        {
            document.getElementById(id).style.background = 'url(http://www.clanhost.nl/images/layout/login_box_pass_background_c.gif) center left';
        }
    }
    
    function removePassUserBackgroundColor(id)
    {
        if (document.getElementById)
        {
            document.getElementById(id).style.background = 'url(http://www.clanhost.nl/images/layout/login_box_pass_background.gif) center left';
        }
    }
}