﻿
//-- clock setup
$(function($) {
    $('p.bue').jclock({ utc: true, utc_offset: -3, format: '%H:%M:%S<br>%d-%b-%y' });
    $('p.scl').jclock({ utc: true, utc_offset: -4, format: '%H:%M:%S<br>%d-%b-%y' });
    $('p.mex').jclock({ utc: true, utc_offset: -6, format: '%H:%M:%S<br>%d-%b-%y' });
    $('p.mad').jclock({ utc: true, utc_offset: +1, format: '%H:%M:%S<br>%d-%b-%y' });
    $('p.mia').jclock({ utc: true, utc_offset: -4, format: '%H:%M:%S<br>%d-%b-%y' });
});


//-- top menu showSub
$(document).ready(function() {
    $(function() {
        $(".topMenu td.shSub").mouseover(function() {
            $(".topMenu td.shSub div").show();
        });
    });
    $(function() {
        $(".topMenu td.shSub").mouseout(function() {
            $(".topMenu td.shSub div").hide();
        });
    });
});