///<reference path="jquery.intellisense.js"/>
var so;

//DOM Ready
jQuery(document).ready(function() {
    //setupNavigation();

    //getPage("home.html", "Home");

    positionSite();

    //addFlash();
});

function positionSite() {
    var screenWidth = 0;
    var siteWrapperWidth = jQuery(".site-wrapper").outerWidth();
    
    if (jQuery.browser.msie) {
        screenWidth = jQuery(document).width();
    }
    else {
        screenWidth = jQuery(document).width(); 
    }

    var siteLeft = ((screenWidth - siteWrapperWidth) / 2);

    jQuery(".site-wrapper").css("margin-left", siteLeft);
    jQuery(".site-wrapper").css("top", "0");
}

function addFlash() {
    jQuery('#flashcontent1').flash({
        src: 'Css/Flash/play_03a.swf',
        width: 380,
        height: 150,
        quality: "high",
        wmode: "transparent"
    });
}   

