$(function(){
    $('#arcelorDialog').jqm({
        toTop: true
    }); 
    
    var allGallImage = $('table.galeriaTablazat td img');
    
    allGallImage.hover(function(){
            $(this).fadeTo("slow", 0.5)
        
        },
        function(){
            $(this).fadeTo("slow", 1)
        }
    )
    
    $(allGallImage).click(function(){
        
        
        
        var img = $('<img alt="" border="0" \/>');
        
        $(img).load(function (){
            $('#arcelorDialog').jqmShow()
            $('#arcelorDialog').css({marginLeft: ((-1)*parseInt($('#arcelorDialog').width()/2))+'px'})
        })
        
        $('#arcelorDialog').html(img.attr('src', $(this).attr('src').replace('/tn_', '/')))
    })
    
})
