$(function() {
	var date = new Date();
	var date2 = new Date();
    var offset = 2*60*60*1000;
 	$("#header").flash({src: '/templates/19-temp/flash/header.swf', width: 971, height: 174, wmode: 'opaque'});
	$(document).pngFix();
	$('a[rel*=facebox]').facebox();

	if (date2.setTime($.cookie('slider'))+offset < date.getTime())
	{
		setTimeout(function(){
		$("#strip").effect("slide", {direction: "up"}, 2000, function()
		{
			$("#stripitem1").fadeIn("fast", function()
			{
				$("#striplink1").show().html("<img src=\"/templates/19-temp/images/blank.gif\" alt=\"\" />");
				$("#stripitem2").fadeIn("fast", function()
				{
					$("#striplink2").show().html("<img src=\"/templates/19-temp/images/blank.gif\" alt=\"\" />");
					$("#stripitem3").fadeIn("fast", function()
					{
						$("#striplink3").show().html("<img src=\"/templates/19-temp/images/blank.gif\" alt=\"\" />");
						$("#stripitem4").fadeIn("fast");
						$("#striplink4").show().html("<img src=\"/templates/19-temp/images/blank.gif\" alt=\"\" />");
					});
				});
			});
		})}, 500);
		
	}
	else
	{
		$("#strip").show();
		$("#stripitem1").show();
		$("#striplink1").show().html("<img src=\"/templates/19-temp/images/blank.gif\" alt=\"\" />");
		$("#stripitem2").show();
		$("#striplink2").show().html("<img src=\"/templates/19-temp/images/blank.gif\" alt=\"\" />");
		$("#stripitem3").show();
		$("#striplink3").show().html("<img src=\"/templates/19-temp/images/blank.gif\" alt=\"\" />");
		$("#stripitem4").show();
		$("#striplink4").show().html("<img src=\"/templates/19-temp/images/blank.gif\" alt=\"\" />");
	}
	$.cookie('slider',date.getTime());
 });