	function viewLeftProduct() {
		///////////////////////////////////////////////////////////
	    $(".rmdImages").accessNews1({
	        newsSpeed: 500,
	        newsViewCount: 1,
	        clsName: ".recommend_slider",
	        leftClick: function() {
	        	if(recommendIndex > 0) {
	        		recommendIndex --;

	        		changeRecommendInfo(recommendIndex);        		
	        	}

	        },
	        rightClick: function() {
	        		        
	        	if(recommendIndex < recommendProductIdxs.length) {
	        		recommendIndex ++;

	        		changeRecommendInfo(recommendIndex);  
	        	}
	        	
	        }	        
	        
	    });		
	    
	    
	    getRecommendList();	
	}
	
	var recommendIndex = 0;
	var recommendProductIdxs = new Array();
	var recommendProductNames = new Array();
	var recommendProductCounts = new Array();
	var recommendProductPrices = new Array();
		
	function getRecommendList() {
		recommendProductIdxs = document.getElementById("recommendProductIdx").innerHTML.split("|");
	
		if(recommendProductIdxs != undefined) {

			for(var i=0; i < recommendProductIdxs.length; i++) {		
				recommendProductNames[i] = document.getElementById("recommendProductName_"+recommendProductIdxs[i]).innerHTML;			
				recommendProductCounts[i] = document.getElementById("recommendProductCount_"+recommendProductIdxs[i]).innerHTML;
				recommendProductPrices[i] = document.getElementById("recommendProductPrice_"+recommendProductIdxs[i]).innerHTML;
				
				
			}

			document.getElementById("recommendProductName").innerHTML = recommendProductNames[0];
			document.getElementById("recommendProductCount").innerHTML = "³²Àº¼ö·® : " + recommendProductCounts[0] + "°³";
			document.getElementById("recommendProductPrice").innerHTML = recommendProductPrices[0] + "È¥";
			
		}
	}
		
		
	function changeRecommendInfo(recommendIndex){
		$("#recommendProductName").animate({opacity: 0}, 250, function() {
		
			document.getElementById("recommendProductName").innerHTML = recommendProductNames[recommendIndex];
			document.getElementById("recommendProductCount").innerHTML = "³²Àº¼ö·® : " + recommendProductCounts[recommendIndex] + "°³";
			document.getElementById("recommendProductPrice").innerHTML = recommendProductPrices[recommendIndex] + "È¥";
	        		
            $("#recommendProductName").animate({opacity: 1}, 250);
            $("#recommendProductCount").animate({opacity: 1}, 250);
            $("#recommendProductPrice").animate({opacity: 1}, 250);
        });
        
        $("#recommendProductCount").animate({opacity: 0}, 250);
        $("#recommendProductPrice").animate({opacity: 0}, 250);	
	}