/*
 * JS pro webovou cast
 *
 *
 */
 
$(document).ready(function () {
 	$('#soucet').parent().parent().hide();
    $('#soucet').val('5');
    
    $("a.external").click(function(){
		window.open($(this).attr('href'));
		return false;
	});
    
});

$(function() {
	$('a[href$="jpg"], a[href$="jpeg"], a[href$="gif"], a[href$="png"], a[href$="JPG"], a[href$="JPEG"], a[href$="GIF"], a[href$="PNG"]').lightBox();
	
});

 
