jQuery(document).ready(function(){


    //alert("ready");
    
    jQuery("#td_mycart").hover(
    function() // mouseenter
    {
        //alert('hover');
       ShowDropDown();
    },
    function() //mouseleave
    {
        HideDropDown();
    });



});

function ShowDropDown()
{
    jQuery('#divDropDown').stop(true,true); // stops the queue
    if(jQuery('#divDropDown').css('display') == 'none')
    {
        jQuery('#divDropDown').css('display','block');
    }
}

function HideDropDown()
{
    jQuery('#divDropDown').stop(true,true); // stops the queue
    jQuery('#divDropDown').animate({height:"0px"}, 1000, function(){
                                                                    jQuery('#divDropDown').css('display','none');
                                                                    jQuery('#divDropDown').css('height','auto');
                                                                } );
}

/*jQuery(function(){
		jQuery('#loopedSlider').loopedSlider({
			autoStart: 6000,
			restart: 500,
			slidespeed: 600,
			autoHeight: true
		});
	});

jQuery(document).ready(function(){

    if( document.getElementById('divCategoryProducts') != null ||
        document.getElementById('image') != null  )
    {
        ShowDropDown();
        //jQuery('#divDropDown').delay(5000);
        setTimeout("HideDropDown()",5000);
    }

});*/



