$(function() {
    var recent_products = $.cookie('recent_products');
    
    if(recent_products && recent_products.length > 0)
    	recent_products = recent_products.split(',');
    else
    	recent_products = [];
    	
    var new_recent_array = [current_product_index+'=>'+window.location];
    var temp;
    for(var i=0; i < recent_products.length && i < 10; i++) 
    {
    	temp = recent_products[i].split('=>');
    
    	$('ul.recent').append('<li style="width: 118px; max-height: 68px; overflow-y:visible;"><a href="'+temp[1]+'"><img style="width: 118px; max-height: 68px;" src="'+images_path+temp[0]+'.jpg" /></a></li>');
    	if(temp[0] != current_product_index)
    	{
    		new_recent_array.push(recent_products[i]);
    	}
    }
    
    $.cookie('recent_products', new_recent_array.join(','), { path: '/' } );
    
    if(recent_products.length > 0)
    {
  	    $(".recent_container").jCarouselLite({
  	        btnNext: ".recent_next",
  	        btnPrev: ".recent_prev",
  	        circular: false
  	    });
	  }

			
			

  });
