

//--------------------------
//  Spousteni funkce
//--------------------------
$().ready(function(){


	//--------------------------
	//  Pohyb elementu
	//--------------------------
	$("div[rel^='slide']").each(function(){
		$(this).show('slow');
	});


	//--------------------------
	//  Overeni formulare
	//--------------------------
	$("input[rel^='checker']").each(function(){
		$(this).val(Math.random());
	});


	//--------------------------
	//  Detail cisla
	//--------------------------
	$('#recenze_link').click(function(){
		$('#obsah').hide("slow", function(){
			$('#recenze').show("slow");
		});
		
		return false;
	});
	$('#obsah_link').click(function(){
		$('#recenze').hide("slow", function(){
			$('#obsah').show("slow");
		});
		
		return false;
	});
	
	$(function() {
	    $.Lightbox.construct({
	        show_linkback:  false,
	        text: {
	            image:''
	        }
	    });
	});
})


function slideElements(elements)
{
	alert(elements);
}