function Gallery(){

var options = {
continuous: true,
counterType: "skip"
};

var img1 = {
    player:     'swf',
    content:    'http://www.kaloderma.de/wp-content/uploads/flash/kaloderma_big.swf',
    height:        500,
    width:        870,
    options:    options
};

/*var img2 = {
    player:     'img',
    content:    'Gallery/Image2.jpg',
    height:        550,
    width:        850,
    options:    options
};

var img3 = {
    player:     'img',
    content:    'Gallery/Image3.jpg',
    height:        550,
    width:        850,
    options:    options
};*/

Shadowbox.open([img1]);

};

$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});
