$(document).ready(function(){

$(".confirm").click(function() {

return confirm("Naozaj zmazať?");

});

$(".selector").change (function() {

$(this).prev().val($(this).val());

});




	// install the event handler for #debug #output
			//$('input[@type="text"], textarea').keydown(update).keyup(update).mousedown(update).mouseup(update).mousemove(update);

			// assign the #field1 paste event
			$('.replace').click(function(e) {
		
			   //Zisti poziciu kde sa nachadza kurzor  
			   var ciel=document.getElementById("clanok_text");
			   var pozicia=getSelectionEnd(ciel);
			
		
		    xxx = ciel.scrollTop;
        
			
				$('#clanok_text').replaceSelection($(this).attr("rel"), true);
				//$.each($('#clanok_text'), update);
				//e.preventDefault();
		    
		    ciel.scrollTop=xxx;
    
				//Umiestni kurzor na poziciu kde sa vkladal text
				setSelectionRange(ciel, pozicia, pozicia);
        ciel.focus();
     
				
				e.stopPropagation();
				return false;
			});
			
			
			$('.vlozit_link').click(function(e) {
			
			  //Zisti poziciu kde sa nachadza kurzor  
			  var ciel=document.getElementById("clanok_text");
			  var pozicia=getSelectionEnd(ciel);
			
			 xxx = ciel.scrollTop;
				$('#clanok_text').replaceSelection('{{obr='+$("#insert_fromweb").val()+','+$(this).attr("rel")+'}}', true);
      ciel.scrollTop=xxx;

        //Umiestni kurzor na poziciu kde sa vkladal text
        setSelectionRange(ciel, pozicia, pozicia);
        ciel.focus();
     
				
				e.stopPropagation();
				return false;
			});
			
		
    
$('.clickerase').click(function() {

if ($(this).attr("rel")==$(this).val()) { $(this).val(''); }

});    	
			
			

});




