$(function(){
	rnd_number = randomNumber();
	var flashvars = {};
	var params = {wmode: "transparent"};
	var attributes = {};
	swfobject.embedSWF("swf/countdown.swf?" + rnd_number, "countdown_flash", "230", "74", "8.0.0", "expressInstall.swf", flashvars, params, attributes);
	swfobject.embedSWF("swf/billboard.swf?" + rnd_number, "hoarding", "920", "90", "8.0.0", "expressInstall.swf", flashvars, params, attributes);
	
	$("a#login_link").click(function(){
		if ($(this).hasClass("over"))
		{
			$(this).removeClass("over");
			$("#login").hide();
		}
		else
		{
			$(this).addClass("over");
			$("#login").show();
		}
		return false;
	});
	
	$('#slideshow').serialScroll({
		items:'li',
		prev:'#comps a.prev',
		next:'#comps a.next',
		offset:-75, //when scrolling to photo, stop 230 before reaching it (from the left)
		start:1, //as we are centering it, start at the 2nd
		duration:500,
		force:true,
		stop:true,
		lock:false,
		cycle:false, //don't pull back once you reach the end
		jump: false //click on the images to scroll to them
	});
});