jQuery(function($) {
	
	$('#slideshow ul li:first').show();
	$('#side-nav .sub-nav').each(function() {
		$(this).find('li:last').addClass('last');
	});
	
	function change_slide() {
		var current = $('#slideshow ul li').index($('#slideshow ul li:visible'));
		var total = $('#slideshow ul li').length;
		if(current < total - 1) {
			current += 1;
		} else {
			current = 0;
		}
		$('#slideshow ul li:visible').fadeOut();
		$('#slideshow ul li:eq(' + current + ')').fadeIn();
	}
	
	var slide_interval = setInterval(change_slide, 3000);
	
	$('#side-nav > .top > .btm > ul > li > a').click(function() {
		var child = $(this).parent().find('.sub-nav');
		if(child.length > 0) {
			if(child.is(':visible')) {
				child.hide();
				$(this).parent().removeClass('open');
			} else {
				child.show();
				$(this).parent().addClass('open');
			}
		return false;
		}
	});
	
});
