function fnOpenModal() {
    window.showModalDialog("includes/forms/index.php", '', 'dialogHeight:560px;dialogWidth:465px');
}

$(document).ready(function() {
    $("img[rel]").overlay();

    openAccordian();

});

function openAccordian() {
    
    var pageGroupId = $('meta[name=page-group]').attr("content");

    switch (pageGroupId)
    {
        case '1':
            document.getElementById('softwareDevPane').style.display = "block";
            break;
        case '2':
            document.getElementById('designPane').style.display = "block";
            break;
        case '3':
            document.getElementById('brandingPane').style.display = "block";
            break;
        case '4':
            document.getElementById('aboutPane').style.display = "block";
            break;
        
    }

}

