jQuery(document).ready(function(){

    /******************************************************************************
     *
     * Footer imagelist
     *
     ******************************************************************************/
    
    
    
    // Show it because it is nice now
    jQuery('div.footer-imagelist').jCarouselLite({
        btnNext: ".footer-rightarrow",
        btnPrev: ".footer-leftarrow",
        visible: 8,
        speed: 500,
		easing: "easeinout"

    });
	
    jQuery('div.footer-imagelist').css('width',750);
    jQuery('div.footer-imagelist').css('height',90);
    jQuery('div.footer-imagelist').children('ul').css('height',80);
    jQuery('div.footer-imagelist').children('ul').children('li').css('height',80);
    jQuery('div.footer-imagelist').children('ul').children('li').css('overflow','visible');
    
  jQuery('div.footer-imagelist').children('ul').children('li').css('visibility', 'visible');
    
});