jQuery(function(){


    jQuery('#li_mycart').hover(
    function() // mouseenter
    {
       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(){

    // On document ready hide all images first
	if (jQuery("#options_tags").length >0)
	{
    	jQuery(".imageShowcase").hide();
	}
	//jQuery("other-tags").hide();
    //jQuery("#productImgDefault").show();

   jQuery("#options_tags input:checkbox").click(function() {

        if (jQuery("#options_tags input:checkbox").attr('checked'))
        {
            //alert ('true');
        	jQuery(".imageShowcase").show();
        }
        else
        {
        	jQuery(".imageShowcase").hide();
        }

    });   

});



