// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// 
// Oorspronkelijke naam :   w3 centraal javascript
// Opdrachtgever        :   DenK B.V.
// 
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// 
// Bestandsinformatie
// 
// Bestandnaam          :   central.js
// Locatie              :   http://central.denkhosting.nl/w3/
// Gemaakt              :   01-07-2009
// Gewijzigd            :   17-03-2010	13:40
// Eigenaar             :   DenK B.V.               - www.denk.biz - info@denk.biz
// Auteur               :   Ruben Hendriks          - hendriks@denk.biz
// Versie               :   1.0.0
// 
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// 
// (C) 2009 DenK Internet Services. Alle rechten voorbehouden. 
// 
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=


// Returns the version of Internet Explorer or a -1, indicating the use of another browser.
function getIEVersion()
{
    var rv = -1;
    if (navigator.appName == 'Microsoft Internet Explorer')
    {
        var ua = navigator.userAgent;
        var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
        if (re.exec(ua) != null)
            rv = parseFloat( RegExp.$1 );
    }
    return rv;
}

var ver = getIEVersion();


// Include jquery
//document.write('<script type="text/javascript" src="http://central.denkhosting.nl/jquery/jquery-1.3.2.min.js"></script>');

// plugins for jquery
//document.write('<script type="text/javascript" src="http://central.denkhosting.nl/jquery/plugin/easing/jquery.easing.min.js"></script>');
//document.write('<script type="text/javascript" src="http://central.denkhosting.nl/jquery/plugin/lavalamp/jquery.lavalamp.min.js"></script>');
//document.write('<script type="text/javascript" src="http://central.denkhosting.nl/jquery/plugin/ahover/jquery.ahover.js"></script>');
//document.write('<script type="text/javascript" src="http://central.denkhosting.nl/jquery/plugin/dimensions/jquery.dimensions.min.js"></script>');


// Include prototype
document.write('<script type="text/javascript" src="http://central.denkhosting.nl/prototype/prototype.js"></script>');


// Include scriptaculous
document.write('<script type="text/javascript" src="http://central.denkhosting.nl/scriptaculous/scriptaculous.js"></script>');


// Include swfobject
document.write('<script type="text/javascript" src="http://central.denkhosting.nl/swfobject/2.2/swfobject.js"></script>');


// Include pushup
if(ver == 6) 
{
    document.write('<link type="text/css" rel="stylesheet" href="http://central.denkhosting.nl/pushup/css/pushup-ie6.css" />');
}
else
{
    document.write('<link type="text/css" rel="stylesheet" href="http://central.denkhosting.nl/pushup/css/pushup.css" />');
}
document.write('<script type="text/javascript" src="http://central.denkhosting.nl/pushup/js/pushup.js"></script>');


// Include prototip
document.write('<link type="text/css" rel="stylesheet" href="http://central.denkhosting.nl/prototip/css/prototip.css" />');
document.write('<script type="text/javascript" src="http://central.denkhosting.nl/prototip/js/prototip.js"></script>');


// Include floatbox
document.write('<link type="text/css" rel="stylesheet" href="http://central.denkhosting.nl/floatbox/v3.51/floatbox.css" />');
document.write('<script type="text/javascript" src="http://central.denkhosting.nl/floatbox/v3.51/floatbox.js"></script>');


// Include local javascript
document.write('<script type="text/javascript" src="/jscripts/local.js.php"></script>');


// Centrale functions


