$(document).ready(function() {
    $("a.fancy").fancybox({
        'padding'               : 10,
        'overlayOpacity'        : 0.7,
        'overlayColor'          : '#000',
        'titlePosition'         : 'inside'
    });
    $("a.video").fancybox({
        'padding'               : 10,
        'autoScale'             : false,
        'autoDimensions'        : false,
        'width'                 : 640,
        'height'                : 385,
        'overlayOpacity'        : 0.7,
        'overlayColor'          : '#000',
        'titleShow'             : false,
        'type'                  : 'iframe',
        'scrolling'             : 'no',
        'titlePosition'         : 'inside'
    });
    $("a.audio").fancybox({
        'padding'               : 10,
        'autoScale'             : false,
        'autoDimensions'        : false,
        'width'                 : 250,
        'height'                : 290,
        'overlayOpacity'        : 0.7,
        'overlayColor'          : '#000',
        'titleShow'             : true,
        'type'                  : 'iframe',
        'scrolling'             : 'no',
        'titlePosition'         : 'inside'
    });
    $("a.fancy").each( function() { this.href = this.href.replace( /\/(hu|de|en)\/(.*)$/, '/$2'); } );
    $("input.file.hu").filestyle({
        image: "/gfx/hu/browse.gif",
        imageheight : 27,
        imagewidth : 98,
        width : 207,
        wrappertop : 0
    });
    $("input.file.en").filestyle({
        image: "/gfx/en/browse.gif",
        imageheight : 27,
        imagewidth : 98,
        width : 207,
        wrappertop : 0
    });
});

function changeImage(img,id,back) {
    $('#bigphotos').attr('src','/images/gallery/tn/'+img);
    $('#smallphotos'+id).attr('src','/images/gallery/tn2/'+img);
    if ( back ) $('#smallphotos'+id).attr('src','/images/gallery/tn2_bw/'+img);
}
function changeLogo(img,id,back) {
    $('#logos'+id).attr('src','/images/partners/logo/'+img);
    if ( back ) $('#logos'+id).attr('src','/images/partners/logo_bw/'+img);
}
function changeSrc(img,folder,id,back) {
    $('#pictures'+id).attr('src','/images/'+folder+'/tn/'+img);
    if ( back ) $('#pictures'+id).attr('src','/images/'+folder+'/tn_bw/'+img);
}
function changeGallerySrc(img,folder,id,back) {
    $('#pictures'+id).attr('src','/images/'+folder+'/tn2/'+img);
    if ( back ) $('#pictures'+id).attr('src','/images/'+folder+'/tn2_bw/'+img);
}

