﻿// JScript File
    
////    $ektron(document).ready(function(){
////        alert('hi!');
////        
////        
////    if ($ektron(':input#hfLoginStatus').val() === 'false') or ($ektron(':input#hfLoginStatus').val() === false))
////        {   
////            var loggedin = false;
////            
////            ////$ektron("li#Log a").attr('title','Logout');
////            
////            //$ektron("li#Log").children("span").attr('text','Logout');
////            $ektron("li#Log a").attr('title','Logout');
////            
////            //$ektron("li#Log").children("span").attr('text','Logout');
////            $ektron('li#Log a').bind('click',function(){
////                //$ektron().show(); some function here
////                alert('logout clicked!');
////            });
////        }
////    }):
   
    function cl()
    {
        remove_thickbox('');
    }
    
    function selectedTab(tab)
    {
        //debugger;
        var selectTab = tab; //this assigns the tab to the a tags parent li
        selectTab = $ektron(selectTab);
        var tabs = selectTab.parent();
        $ektron(tabs).find("li").each(function(i){
            $ektron(this).children("a").removeClass("selected");
        });
        selectTab.children("a").addClass("selected");
        return false;
    }
   

    
