/* Author: Edo

*/

function show(element) {
    
    $('html, body').animate({
       scrollTop: $('.' + element).offset().top
    }, 500);
    
}

//function next() {
//    $('.portfolio .item.visible').fadeOut('fast', function() {
//        $(this).removeClass('visible');
//        if($(this).next().hasClass('item')) {
//            $(this).next('.item').fadeIn('fast', function() {
//                $(this).addClass('visible');
//            });
//        }
//        else {
//            $('.portfolio').children().first().fadeIn('fast', function() {
//                $(this).addClass('visible');
//            });
//        }
//    })
//}
//
//function prev() {
//    $('.portfolio .item.visible').fadeOut('fast', function() {
//        $(this).removeClass('visible');
//        if($(this).prev().hasClass('item')) {
//            $(this).prev('.item').fadeIn('fast', function() {
//                $(this).addClass('visible');
//            });
//        }
//        else {
//            $('.portfolio').children('.item').last().fadeIn('fast', function() {
//                $(this).addClass('visible');
//            });
//        }
//    })
//}


















