
	var Ss = {

		init : function() {

			Ss.headercycle();
			Ss.tweaks();

		},	//	init : function()



		headercycle : function() {

			var cycle_html;

			cycle_html += '<ul class="cycle no_print no_text">';
			for (i = 1; i <= 6; i++) cycle_html += '<li><img src="/img/design/home/cycle/' + i + '.jpg" alt="" /></li>';
			cycle_html += '</ul>';

			$(cycle_html).appendTo('#header');

			$('.cycle').cycle({ timeout : 5000 });

		},



		tweaks : function () {

			$('body').addClass('js');

		}	//	tweaks : function ()

	};	//	var Ss = {}

	//	Set this thing on fire!
	$(function() {
		if (css_on()) Ss.init();
	});

