jQuery(function(){
	popupBlock.init();
	jQuery(".img_link").click(
		function(e){
			e.preventDefault();
			if(this.href.indexOf('flv') != -1){
				popupBlock.showFlash(this);
			}
			else{
				jQuery(this).addClass("current");
				popupBlock.showImage(this);
			}
			return false;
		}
	);
});

