$(document).ready(function(){
	addDecors('#header');
	addDecors('#footer');

	$('.eq_list li:nth-child(4n)').addClass("alt");
	$(".earthquakes").accordion({ header: 'h2', autoheight: false });
	$('input#datepicker').simpleDatepicker({ chosendate: '9/9/2010', startdate: '6/10/2008', enddate: '7/20/2011', x: -10, y:25 });
});

function addDecors(what){ $(what).append('<b class="decor dleft" /><b class="decor dright" />'); }
