// JavaScript Document

 
function preview(e, stc) {
    if (typeof e =="undefined") {
    document.getElementById("preview").innerHTML = '<a href="' + e.getAttribute('rel') +'" title="" rel="album"><img src="' + e.getAttribute('href') +'" alt="" /></a>'; // zadny element nezobrazit - vycistit preview element
    if(clicked) document.getElementById("preview").innerHTML = '<a href="' + e.getAttribute('rel') +'" title="" rel="album"><img src="' + clicked +'" alt="" /></a>';
    
}
    else { document.getElementById("preview").innerHTML = '<a href="' + e.getAttribute('rel') +'" title="" rel="album"><img src="' + e.getAttribute('href') +'" alt="" /></a>';    // zobrazit preview urcene atributem HREF
  if(stc) clicked = e.getAttribute("href");
}
$("a[rel='album']").colorbox();
}
