/*****************************************************************

nrdsddsgn.css, version 0.1 | nordsueddesign

Copyright (c) 2010, Johannes Henseler frischmilch@gmail.com

*****************************************************************/


$(function() {
	
	//
	// assign menu clicks
	//
//	$("LI.section>UL").hide();
	$("LI.section A").click(function() {
		$(this).parent().children("ul").slideToggle("fast");
	});
	
	$("LI.active>UL").show();
	
	// top fixed element
/*	$(window).scroll(function() {
		$('#topline').css('top', $(this).scrollTop() + "px");
	});
*/
	
	//
	// jquery Carousel
	// http://www.thomaslanciaux.pro/jquery/jquery_carousel.htm
	//
	$('.gallery').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 0, 
		next:   '#cyclenext, .gallery',
		prev:   '#cycleprev',
		before:	updateCounter
	});
	
	$("#cyclecontrols").css("width",$('.gallery IMG').outerWidth());
	
});

function updateCounter(curr, next, opts) {
	$("#cyclecount").html((opts.currSlide+1)+" of "+opts.slideCount);
}
