$(document).ready(function () {
	
	//if($('#button').length>0){
//		$('#button').fadeIn('slow');
//	}
	
	$('#menu li').hover(function()
	{
		$(this).find('a:first').addClass('hover');
		$(this).find('ul:first').css('left', '0px');
	}
	,function()
	{
		$(this).find('a:first').removeClass('hover');
		$(this).find('ul:first').css('left', '-9999px');
	});

	//var link;
	//$('#content a[href^="http://"]').each(function(){
	//	link=$(this).html();
	//	$(this).html(link+'<span class="externallink"></span>');
	//	//console.log($(this).html());
	//});
	
	
	$('#car #ul1').cycle({
	fx:'scrollDown',
	speed:600,
	timeout:6000,
	pause:1,
	randomizeEffects: false, 
	random:1
	});
	
	$('#car #ul2').cycle({
	fx:'scrollUp',
	speed:600,
	timeout:6000,
	pause:1,
	randomizeEffects: false, 
	random:1
	});

	$('#car #ul3').cycle({
	fx:'scrollDown',
	speed:600,
	timeout:6000,
	pause:1,
	randomizeEffects: false, 
	random:1
	});
	
	
	$('#button').click(function(){
		$(this).remove();
	
	});	
	
	var number = (Math.random()*parseInt(1000000000)).toFixed(0);
	if($('form').length > 0 ){
		$.get('../appear/ajax.php?x=timestamp&r='+number, function(data){
			$('form').append('<input type="hidden" id="timestamp" name="timestamp" value="'+data+'" />');
		});
	}	

});

