function applySkin() {




        $('#mnuBottom ul.list li a').each (function() {

		if ($(this).text().length > 19) {

			$(this).text( $(this).text().substring(0, 19)+'...' );
		}



	});

	$('#mnuBottom ul.list li>div').hover(

	function() {

		$(this).css('background', '#e0e6f3');

	},

	function() {

		$(this).css('background', 'white');

	});



}
