// JavaScript Document

(function( $ ){	  
  $.fn.srg = function() {
	  
	//hover for elements
	//$('.')
    
	//active=0;
	//alert($('.current').attr('id'));
	active=$('.current').attr('id');
	
	elements=$('.plug1');		
    el=elements.get(active);
	$(el).show();
	
    this.each(function() {		
		//set onClick event
		$(this).click(function() {
			el=elements.get(active);
			var t=this;
            $('#ime_bliznjica').html($(t).find("a").html());			
			$(el).fadeOut(140, function() { 
				active=$(t).index()-1;
			    el1=elements.get(active);
 			    $(el1).fadeIn(140);
			});	 
        });		
    });	
  return 'dela';  		
  };
  
  
})( jQuery );

