$(function() {
    $("a.ext, a.shopbutton").attr("target", "_blank");
    $("a.zoom").fancybox();
    $("a.video").bind("click", function() {
        $.fancybox({
            'href': 'fileadmin/templates/swf/player.swf?autostart=1&amp;file=/' + $(this).attr("href"),
            'autoscale': false, 
            'width': 640, 
            'height': 380, 
            'type': 'swf', 
            'swf': {'wmode': 'transparent', 'allowfullscreen': 'false'}
        });
        return false;
    });
    $("a.youtube").bind("click", function() {
        $.fancybox({
            'autoscale': false,
            'width': 680,
            'height': 495,
            'href': $(this).attr("href").replace(new RegExp("watch\\?v=", "i"), "v/"),
            'type': 'swf',
            'swf': {'wmode': 'transparent', 'allowfullscreen': 'false'}
        });
        return false;
    });
    $(".roundabout ul").roundabout({
        easing: 'easeInOutBack',
        minOpacity: 0.75,
        minScale: 0.3,
        duration: 1200
    });
});
