﻿function navigate() {
    $(" #headerNavs li").hover(function() {
        $(this).find('ul:first').fadeIn(150);
    }, function() {
        $(this).find('ul:first').fadeOut(150);
    });
}

$(document).ready(function() {
    navigate();
    $("a[rel='productImg_box']").colorbox();
    $("a[rel='gal_inferno']").colorbox();
    $(".Video640").colorbox({ width: "685px", height: "455px", iframe: true });
});
