﻿


//make two lined selectd menus show diferent image
//not already set for ie6
if( window.dmuk_menu_bg_image  == null)
{
    window.dmuk_menu_bg_image =  "url('images/menu_current_bg_double.png')";
}
//onload
$(document).ready(function()
{

    //if the text has pushed the box height down
    if( $(".AspNet-Menu-Selected").height() > 32)
    {   

        //change the background image to a double height bg img
        $("#globalnav .AspNet-Menu-Selected a").css("background-image", window.dmuk_menu_bg_image );  
    }
        
    

});