jQuery(document).ready(function(){
    //Initialise the cart header dropdown box
    cartheader = jQuery('.cart-header');
    cartheader.hide();
    jQuery('.cart-dropdown').mouseover(function(){
        cartheader.show();
    }).mouseout(function(){
        cartheader.hide();
        
    });

    cartheader.mouseover(function(){
        cartheader.show();
    }).mouseout(function(){
        cartheader.hide();
    });
});
