$(function() {

    $(".gallery-icon a").each(function() {
        $(this)
            .css({
                "-webkit-transform": 'rotate(' + (0) + 'deg)',
                "-moz-transform": 'rotate(' + (0) + 'deg)'
            })
            .hover(function() {
                $(this).css({
                    "-webkit-transform": 'rotate(' + (0) + 'deg) scale(1.05)',
                    "-moz-transform": 'rotate(' + (0) + 'deg) scale(1.05)'
                })
            }, function() {
                $(this).css({
                    "-webkit-transform": 'rotate(' + (0) + 'deg) scale(1)',
                    "-moz-transform": 'rotate(' + (0) + 'deg) scale(1)'
                })
            });
    });
    
    <!-- $('a[rel=shadowboxmovie]').shadowbox(); -->
	
});

