/** skripty pouzivane bezne ve frontendu */

$(function() {
	/** toggle element with $(this).attr('rel') id/class */
	$(".toggleContentLink").click(function(e) {
		e.preventDefault();
		id = $(this).attr('rel');
		
		if($(this).hasClass('close')) {
			setTimeout(function() {
				$(".toggleContentLink").find('.hide').hide();
				$(".toggleContentLink").find('.display').show();
				$(id).hide();
				},1);
		} else {
			$(this).find('span').toggle();
			$(id).toggle();
		}
	});
	
	/** aktivace vsech storno buttonu */
	$("input")
	.filter(function() {return $(this).hasClass('reset');})
	.click(function(e) {e.preventDefault(); 
		parents = $(this).parents();
		parents.each(function() {if($(this).is('form')) $(this).clearForm();});
	});
	
	
	/** aktivace vsech hover */
	$(".submitButton").hover(function() {$(this).addClass('hover');}, function() {$(this).removeClass('hover');});
	
});