$(document).ready(function() {
    $('#cartshow').live('click', function(event) {      
      $('#details').fadeIn( 400, function(){          
          $('#cartshow').hide(0, function(event) {
            $('#carthide').show( 0 );  
          });     
       });
    });
    $('#carthide').live('click', function(event) { 
       $('#details').fadeOut( 400, function(){         
          $('#carthide').fadeOut( 0, function(event) {
            $('#cartshow').show( 0 );  
          });     
       });
    });
});
$(document).ready(function(){  
  $('.cat-li a').mouseenter(function() {
        $(this).parent('.cat-li').find('.cat-img img').fadeIn(500);
  });
  $('.cat-li a').mouseleave(function() {
         $(this).parent('.cat-li').find('.cat-img img').hide(0);
  });
});
 $(document).ready(function(){
       $('.new_link').mouseover(function(e){

           $(this).siblings('.new_product').css('top', e.pageY-990);  // 795px med bildspel, 430px utan
           $(this).siblings('.new_product').show();
       });
           $('.new_link').mouseout(function(e){
                     $(this).siblings('.new_product').hide();
       });
    });

