jQuery(document).ready(function($){

    $("a[rel^='prettyPhoto']").prettyPhoto({show_title: false,
                                            opacity: '0.3'});

    //slider
    /*$('#slider').superBanner({width: '981',
                              height: '413',
                              speed: '5000',
                              autoplayDelay: '2000',
                              dotPagination: false,
                              numberPagination: false,
                              pauseable: false});*/

    //youtube
    $('.mosts-view div').click(function(){
        var title   = $(this).find('a').attr('title');
        var created = $(this).find('span.created').text();
        var url     = 'http://www.youtube.com/embed/'+$(this).find('span.url').text();

        $('#title').text(title);
        $('#created').text(created);
        $('#video').attr('src',url);

        //Scroll top
        var top = $('#video').offset().top;
        $("html:not(:animated),body:not(:animated)").animate({ scrollTop: top-20}, 500 );
        return false;
    });

    $('#youtube li a').click(function(){
        var title   = $(this).attr('title');
        var url     = 'http://www.youtube.com/embed/'+$(this).find('span.url').text();

        $('#title').text(title);
        $('#video').attr('src',url);
        
        //Scroll top
        var top = $('#video').offset().top;
        $("html:not(:animated),body:not(:animated)").animate({ scrollTop: top-20}, 500 );
        return false;
    });

});
