jQuery(document).ready(function($) {
	

                         $('.btn-next').click(function(){
                                stepcarousel.stepBy('mygallery', 1, $);
                                return false;
                        });
                        $('.btn-prev').click(function(){
                                stepcarousel.stepBy('mygallery', -1, $);
                                return false;
                        });


                /*        jQuery(function($) {
                            $('div.belt').bind('mousewheel', function(event, delta) {
                                                 delta>0 ? stepcarousel.stepBy('mygallery', 1, $) : stepcarousel.stepBy('mygallery', -1, $);
                                    return false;
                                });
                        });*/
						

});
function builtGallery(gallery, $){
	$.each(gallery,function(index, item)
	{
    	$('.belt').append($( '<div class="panel" width="'+item.width+'" style="width:'+item.width+'px"><img src="'+item.filename+'" class="reflect" width="'+item.width+'" height="'+item.height+'"  alt=""></div>' ));
    });
}

function reflect($){

	$('#mygallery img').reflect({height: 0.1, opacity: 0.5} );

}

