$(document).ready(function() {
	/*var countTabs = $('.random').children().size(); // Count the number of tabs
    var randomizeIt = Math.floor(Math.random()*(countTabs)); // Find a random number between 0 and the number of tabs (countTabs)
    $('#ux-samples').tabs({ selected: randomizeIt }); // Tell the tabs which one to be active --- randomizeIt for random tab on page load*/
	$('#ux-samples') 
	.before('<div id="ux-nav">') 
	.cycle({
		speed:  'fast',
		timeout:0,
		pager:  '#ux-nav' 
	});
});
