var ver = 7;
if($j.browser.msie) (ver = $j.browser.version);
$j(document).ready(function() {
    // initiate sIFER 
    if(typeof sIFR == "function") {
        sIFR.replaceElement(named({sSelector:"#content h1", sFlashSrc:"flash/graphitelight.swf", sColor:"#AA395B", sBgColor:"#f5f3f4",sWmode:"transparent", sFlashVars:"textalign=left"}));
        sIFR.replaceElement(named({sSelector:"#content h2", sFlashSrc:"flash/graphitelight.swf", sColor:"#000000", sBgColor:"#f5f3f4",sWmode:"transparent", sFlashVars:"textalign=left"}));
    };
    // corners for textbox and call except ie less then 6 
    if(ver >= 6) {
        $j('#textbox, #call').corner();
    }
    // open small window for pr video 
    $j("a#video").click(function(event) {
    event.preventDefault();
    open(this.href,'video','width=320,height=350,top=100,left=250,location=0,menubar=0,toolbar=0,scrollbars=0,status=0');
    });
    // open external link in a new window 
    $j("a.external").click(function(event) {
    event.preventDefault();
    open(this.href,'page');
    });
    // expand/collapse content 
    //hide the all of the element with class msg_body
    $j(".content_body").hide();
    //toggle the componenet with class msg_body
    $j(".content_head").click(function()
    {
        $j(this).next(".content_body").slideToggle(600);
        if($j(this).text().indexOf("M") != -1) {
            $j(this).html("Hide &raquo;");
        }
        else $j(this).html("More &raquo;");
    });
});