function resetSplashPic() {
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'40px'},{queue:false,duration:400});
	}, function() {
		$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:3500});
	});
	
}


$(document).ready(function(){
	resetSplashPic();
	$('#list-accordion').accordion({ 
	active: false, 
    header: '.head_accordion', 
    navigation: true, 
    event: 'mouseover', 
    fillSpace: true 
		 
	});
	
});

$(function () {
        $('ul.drawers').accordion({
            header: 'H2.drawer-handle',
            selectedClass: 'open',
            event: 'mouseover'
        });
});
