﻿// JScript File
/** highlign */
function a($e)
{
     $e.className = $e.className + ' active';
}

function b($e)
{
    $e.className = $e.className.replace(' active','');
}

function v($e)
{
    document.location= $e;
}

function layout()
{
    $('.rounded').corner('8px');
    $('.rounded-top').corner('5px top');
    $('.rounded-4px').corner('4px');
    $('h5').corner('5px top');
    $('img[src$=.png]').ifixpng();
    $('.logo').ifixpng();
    
    if($.datepicker != null)
        $('.date-time').datepicker({dateFormat: 'dd-M-yy'});
 }

