$(document).ready(function(){
	//collect images, remove other content
	$images = $('#project img').clone();
	$('#project').empty();
	$images.appendTo('#project');
	//slideshow
	$('#project').cycle({ 
    fx:     'fade', 
    speed:  1, 
    timeout: 0, 
    next:   '#slide_next', 
    prev:   '#slide_prev',
    slideExpr: 'img',
    after: function(curr, next, opts) {
	    var index = $(this).parent().children("img").index(this);
	    var total = $(this).parent().children("img").length;
	    $('#slide_prev')[index == 0 ? 'hide' : 'show']();
	    $('#slide_next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
	    $('#slide_paging').text((index+1)+" / "+total);
    } 
  });
});
