
function uc_product_image_catalog_viewall_run() {
/*	$('#product_catalog_viewall_images tr td').children('h4').hide();
	$('#product_catalog_viewall_images tr td').children('div').hide();
	$('#product_catalog_viewall_images tr td').eq(0).addClass("active");
	$('#product_catalog_desc').html($('#product_catalog_viewall_images tr td').eq(0).children('h4').html());
	$('##moredescription').html($('#product_catalog_viewall_images tr td').eq(0).children('div').html());
	$('#product_catalog_viewall_images tr td').children('a').parent().mouseover(function() {
		$(this).parent().parent().find('tr > td').removeClass('active');
		$(this).addClass("active");
		var oText = $(this).children('h4').html();
		$('#product_catalog_desc').html(oText);
		var oText = $(this).children('div').html();
		$('#moredescription').html(oText);
	});
	*/
	init();
	$("#product_catalog_viewall_images li").mouseover(function(){
        id = $(this).attr("id");
		//description
		$(".pressdescription").each(function(){
    		$(this).css("visibility", "");
           $(this).hide();
		})
		$(".moredescription").each(function(){
				$(this).css("visibility", "");
           $(this).hide();
		})

		$("#des_"+id).show();	
        $("#tit_"+id).show();
		
	}).mouseout(function(){
   //  init();
    
	})
	
}

function init() {
$(".pressdescription").each(function(){
		  $(this).hide();
    })
	$(".pressdescription").eq(0).css("display", "");
	$(".pressdescription").eq(0).css("visibility", "hidden");
    $(".moredescription").each(function(){
		  $(this).hide();
    })
	$(".moredescription").eq(0).css("display", "");
	$(".moredescription").eq(0).css("visibility", "hidden");

}

$(document).ready(function() {
	uc_product_image_catalog_viewall_run();
});

