﻿//HUYNQ
function ScrollTop() {
    jQuery('body,html').animate({
        scrollTop: 0
    }, 820);
    return false;
}
$(function () {
        $('#gallery a').lightBox();
});


function keyword() {
    if ($("#txtKeyword").val() == '') { document.getElementById("txtKeyword").className = 'input-search fme'; $("#txtKeyword").focus(); return false; } else { document.getElementById("txtKeyword").className = 'input-search'; }
    return true;
}

function mainmenu() {
    $(" #nav ul ").css({ display: "none" }); // Opera Fix
    $(" #nav li").hover(function () {
        $(this).find('ul:first').css({ visibility: "visible", display: "none" }).show(200);
    }, function () {
        $(this).find('ul:first').css({ visibility: "hidden" });
    });
}
//Destination
$(document).ready(function () {
    mainmenu();
    $(".des_body").hide();
    $(".des_head").click(function () {
        $(this).next(".des_body").slideToggle(300);
    });
});
