$(document).ready(function(){
	
	var $ = jQuery;
	var cookiename = "choc_play_flash";

	if($.cookie(cookiename) == null) {

		// Play video
		$.cookie(cookiename, 'true', {path: '/', expires: 30 });
		$('div#home_video').show();
	}
	else {
		
		$('div#home_image').show();
	}
	
	$('div#home_image').click(function() {
		
		$(this).hide();
		$('div#home_video').show();
	});

	function randomtip() {
		var length = $("#tips li").length; // this is where we put the id of the list
		var ran = Math.floor(Math.random()*length) + 1;
		$("#tips li:nth-child(" + ran + ")").show();
	}

	randomtip();

});
