$(document).ready(function() {
	
	/*
	Initialisation Namespaces
	*************************************************************************************/
	
	var site = {
		rate: 500,
		easing: 'easeOutQuint'
	};
	
    $('#nav').accordion({
    	header: 'h3',
        alwaysOpen: false,
		collapsible: true,
		autoHeight: false,
		active: '.open',
		selectedClass: 'current'
	});

/*	$('#superdead a, #social li a, #nav li a').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
        $.scrollTo( this.hash,300);
        return false;
    });
*/
	$('.post img').fadeIn(1000);

	if($("#slideshow").children().length > 1){
		$('#slideshow').cycle({
			fx : 'scrollHorz',
			easing : site.easing,
			speed : site.rate,
			timeout : 0,
			pause: 1,
			next:   '.pager .next, #slideshow', 
			prev:   '.pager .prev'
		});
	};
	
});

