﻿var shown_content_id = "bemutatkozas"
function slideDark ( target_content_id ) {
    $("#darker_block").animate({
        width:"10px",
        height:"10px"
    }, 500, function(){
        $('#' + shown_content_id).hide()
        $('#' + target_content_id).show()
        shown_content_id = target_content_id
    }).animate({
        width:"755px",
        height:"426px"
    }, 400)
    
    
        return false
}


$(document).ready( function() {
    
    $(".lightbox").lightbox({
        fitToScreen: true
    }); 
    
})
