jQuery(document).ready(function(){
	
	jQuery('.newsBox h1').nextAll().hide();
	
	jQuery('.newsBox h1').click( function() {		
		var trig = jQuery(this);
		trig.nextAll().addClass('boxActive');
		trig.nextAll().slideDown('fast');	
		trig.css('background-position', 'top right');
		trig.parent().siblings().children().nextAll('.boxActive').slideUp();
		trig.parent().siblings().children().css('background-position', 'bottom right');
	})
});
