/**
 * blackmirror webdesign - sportas.at JavaScript engine
 * @author Adam Eri
 * @version 1.0
*/


$(document).ready(function() {

	Shadowbox.init({
	    // let's skip the automatic setup because we don't have any
	    // properly configured link elements on the page
	    skipSetup: true
	});


	$("#content #previous-issues ul li div").bind("click", function(){
		Shadowbox.open({
	        content:    "docs/" + $(this).get(0).className + "/index.html",
	        player:     "iframe",
	        title:      "SportAs back issue: " + $(this).find("span").html(),
	        height:     600,
	        width:      960
	    });
	});
	 
});

