		$(document).ready(function(){
          /*  $("a[rel='example3']").colorbox({
                speed: 400,
                height:"80%",
                current:"Billede {current} af {total}"
            });*/
            $("#sortable img").mouseover(function () {
                var $this = $(this); 
                $this.animate({height: '+=6', width: '+=6'}, 'fast', function() {
                });
            });            
            $("#sortable img").mouseout(function () {
                var $this = $(this); 
                $this.animate({height: '-=6', width: '-=6'}, 'fast', function() {
                });
            });            
		});

