/*** for shadowbox ***/

/* lightpop */
$(function() {
    $('a[rel*=playpop]').lightpop({ grouping:false,
                                     overlayBgColor:'#000000',
                                     overlayOpacity:'0.85',
                                     contentBgColor:'#000000',
                                     imageLoading:'img/playLoading.gif',
                                     imageBtnClose:'img/playClose.png'
                                    });
    $('a[rel*=helppop]').lightpop({ grouping:false,
                                      overlayBgColor:'#000000',
                                      overlayOpacity:'0.85',
                                      contentBgColor:'#FFFFFF',
                                      imageLoading:'img/howtoLoading.gif',
                                      imageBtnClose:'img/howtoClose.png'
                                    });

});

/* slide effect */
$(document).ready(function(){
    $('.boxgrid.caption').hover(function(){
        $('.cover', this).stop().animate({top:'121px'},{queue:false,duration:280,easing:'easeOutExpo'});
    }, function() {
        $('.cover', this).stop().animate({top:'371px'},{queue:false,duration:260,easing:'easeInExpo'});
    });
});