// Load in header Flash
var flashVar = {};
var cookie = document.cookie;
flashVar.mute = "true";
if (cookie.match('mute=true')) {
    flashVar.mute = "true";
}
if (cookie.match('volume=')) {
    var vol = cookie.split('volume=')[1].split(';')[0];
    flashVar.volume = vol;
}

swfobject.embedSWF("/digitas_splash.swf", "flash_header", "826", "200", "7.0.0", "/flash/expressInstall.swf", flashVar);

pageActive = true;

// Sidebar Navigation expander
$(document).ready(function () {
    $('#navigation LI UL').each(function(i){
        if (!$(this).hasClass('selected')) $(this).hide();
    });
    $('#navigation LI:has(ul)').addClass('toggler');
    $('#navigation LI A').mouseover(function() {
//        $(this).parent().animate({ backgroundColor: "#F3F3F3" }, 1);
    });
    $('#navigation LI A').mouseout(function() {
//        $(this).parent().animate({ backgroundColor: "#FFF" }, 1);
    });
    
    $('#navigation LI:has(ul)').click(function() {
        if (pageActive) $('ul', this).slideToggle('slow');
        $(this).toggleClass('open');
    });
    $('#navigation A').click(function() {
        $(this).effect("highlight", {}, 400);
    });
    $('#navigation UL LI A').click(function() {
        pageActive = false;
    });
});
