$(function() {
    $("#gallery").jCarouselLite({
		visible: 1
		,start: 0
		,btnNext: ".n"
		,btnPrev: ".p"
		,btnGo: [".1", ".2", ".3", ".4", ".5", ".6", ".7", ".8", ".9", ".10",".11", ".12",".13", ".14",".15", ".16",".17", ".18"]
    });
});

function custList() {
	if(document.getElementById('custList_more').className == "of") {
		document.getElementById('custList_more').className = 'on';
		document.getElementById('moreBtn').innerHTML = "&laquo; Less";
	} else {
		document.getElementById('custList_more').className = 'of';
		document.getElementById('moreBtn').innerHTML = "More &raquo;";
	}
}