jQuery(function(){

	var headers = [{
		background: 'transparent url(/templates/Sagittarius-A/img/space.jpg) repeat 0 -' + (Math.floor(Math.random() * 900)) + 'px',
		title: '"The dinosaurs became extinct because they didn\'t have a space program" (Larry Niven)'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/france.jpg) repeat 0 -260px',
		title: 'They just don\'t make em like they used to'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/cuba.jpg) repeat 0 -30px',
		title: 'Just an average whatever in Cuba'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/beer.jpg) repeat 0 -380px',
		title: '"Life\'s a bitch and then you die" (Nasir Jones)'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/evolution.jpg) repeat 0 -235px',
		title: 'At least a monkey doesn\'t bother with religious attributes'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/data.jpg) repeat 0 -235px',
		title: 'You\'re in there'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/desert.jpg) repeat 0 -290px',
		title: 'I wouldn\'t want to live here either'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/green-sinterklaas.jpg) repeat scroll -90px -485px',
		title: 'From Turkey to Pennsylvania'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/jsf.jpg) repeat 0 -265px',
		title: 'Defending our right to squander money'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/chimp.jpg) repeat 0 -160px',
		title: 'You can see the thinker in me in this profile'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/festive.jpg) repeat 0 -160px',
		title: 'Evolution really is a painstakingly slow process'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/somalia.jpg) repeat 0 -160px',
		title: 'It sucks to be born in Africa'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/google.jpg) repeat 0 -160px',
		title: 'Tin foil, much?'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/samsung.jpg) repeat 0 -160px',
		title: 'Ethiopia 2030?'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/laboratory.jpg) repeat 0 -145px',
		title: 'Not sure what\'s she is doing but it looks interesting enough',
		color: '#464646'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/blackadder.jpg) repeat 0 -145px',
		title: 'Whats yor numbah?'
	},{
		background: 'transparent url(/templates/Sagittarius-A/img/asian.jpg) repeat 0 -190px',
		title: 'Hot chicks are hot'
	}];
	
	
	var header = jQuery('#header h2');
	
	var item = headers[Math.floor(Math.random() * headers.length)];
	
	header
		.css('background', item.background)
		.css('color', item.color || '#fff')
		.attr('title', item.title);
	
	jQuery('span.extended-raquo').each(function(index, raquo){
		jQuery(raquo).siblings('p').last().append(raquo);
	});
});