jQuery(document).ready(function() {
	jQuery(".poznamky th").eq(1).css("width", "240px");
	jQuery("table.prehlad tr").hover(function() {
			jQuery(this).addClass("tr_hover");
		},	function () {
			jQuery(this).removeClass("tr_hover");
		});
		
	jQuery("#actual_img").find('a').each(function()	{
		jQuery(this).hide();
	});
	jQuery("#actual_img").find('a:first').show();
	
	jQuery(".clickable_carousel").click(function()	{
		var tmp = jQuery(this).attr('id');
		var id = tmp.split('_');
		jQuery("#actual_img").find('a').each(function()	{
			$(this).hide();
		});
		jQuery("#acarid_"+id[1]).show();
	});
});
