﻿jQuery(document).ready(function()
{
    jQuery("#linksToOpenBasketSummary .linkToOpenBasketSummary").hover(function()
    {
        jQuery("#basketContent").show();
        jQuery(".headflashobject").hide();
    },
    function()
    {
        jQuery("#basketContent").hide();
        jQuery(".headflashobject").show();
    });
    jQuery("#user_nav_basket").hover(function()
    {
        jQuery("#basketContent").show();
        jQuery(".headflashobject").hide();
    },
    function()
    {
        jQuery("#basketContent").hide();
        jQuery(".headflashobject").show();
    });
    jQuery("#basketContent").hover(function()
    {
        jQuery(this).show();
    },
    function()
    {
        //jQuery(this).hide();
    });
});
