/**
 * Animated menu (for Flashlogic site)
 */
$(document).ready(function() {
    $(".top_link").hover(function(){
            $(this).children("div.drop_down").show("fast", function (){
                if ($(this).is(".shadow")) $(this).css("opacity", "0.2");
                else
                    $(this).css("opacity", "0.8");
            });
        }, function(){
            $(this).children("div.drop_down").hide("fast");
        });

    $(".drop_down>li").hover(function(){
            $(this).css("border", "1px solid black");
            $(this).css("background-color", "#CC9900");
        }, function(){
            $(this).css("border", "1px solid #FFCC00");
            $(this).css("background-color", "#FFCC00");
    });

    $(".load_product").live('click', function(){
        if (CheckIfUpdating()) return;    	
		if (!$("#results_box").length)
		{
			$("#update_box").attr('id', 'results_box');
		};    	
        detail = new productDetail($(this).attr('id'));
        detail.getProductDetail();
    });
});
