
$(document).ready(function() {
    // animate images opacity
    $('.gallery img').css({opacity:'0.2'});
    $('.gallery img').hover(function(){$(this).stop().animate({opacity:'1'},400)}, function(){$(this).stop().animate({opacity:'0.2'},400)})
    
    // animate buttons
    $('.button1 span').css({backgroundPosition:'50% -285px'})
    $('.button1').hover(function(){
            $(this).find('span').stop().animate({backgroundPosition:'50% -150px'},400,'easeInQuad')
        }, function(){
            $(this).find('span').stop().animate({backgroundPosition:'50% -285px'},400,'easeOutQuad')
        })
    
    //animate list
    $('.list1 li a').hover(function(){
            $(this).stop().animate({paddingLeft:'22'},400,'easeOutBack2')                           
        }, function(){
            $(this).stop().animate({paddingLeft:'12'},400,'easeOutQuad')
        })
    // for lightbox
    if ($("a[rel^='prettyPhoto']").length) {
            $(document).ready(function() {
                // prettyPhoto
                $("a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_square'});
            });
        }
 });
