

//--------------------------
//  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());
	});


	//--------------------------
	//  Text slide
	//--------------------------
	$('div[rel^="fade_"]').each(function(){
		fadeElements($(this).attr('id'));
	});
})


function fadeElements(id)
{
	/*$('#'+id).hide('slow');
	if ($('#tip_'+(parseInt(id.replace('tip_', ''))+1)).length) {
        fadeElements('#tip_'+(parseInt(id.replace('tip_', ''))+1));
	}
	//$('#'+id).delay(5000).hide('slow');
	if ($('#tip_'+(parseInt($(this).attr('id').replace('tip_', ''))+1))) {
		
	}*/
}
