$(function() {
  // Externe Links kennzeichnen
  $('a.ext').prepend('<img src=\"images/ico_link-extern.gif\" alt=\"\" /> ');

  // jquery - Tabs-Steuerung
  $('#tabs-l').tabs(2);
  $('#tabs-r').tabs(2);
  
  // Click-Effekte für paging-navigation
  $('.local-blue img').click(function() {
  	$(this).attr("src","uploads/images/buttons/but_local-blue_a.gif");
  	$('.secure-blue img').attr("src","uploads/images/buttons/but_secure-blue_i.gif");
  		}, function() {
  	$(this).attr("src","uploads/images/buttons/but_local-blue_i.gif");
  });
  $('.remote-blue img').click(function() {
  	$(this).attr("src","uploads/images/buttons/but_remote-blue_a.gif");
  	$('.web-blue img').attr("src","uploads/images/buttons/but_web-blue_i.gif");
  		}, function() {
  	$(this).attr("src","uploads/images/buttons/but_remote-blue_i.gif");
  });
  $('.secure-blue img').click(function() {
  	$(this).attr("src","uploads/images/buttons/but_secure-blue_a.gif");
  	$('.local-blue img').attr("src","uploads/images/buttons/but_local-blue_i.gif");
  		}, function() {
  	$(this).attr("src","uploads/images/buttons/but_secure-blue_i.gif");
  });
  $('.web-blue img').click(function() {
  	$(this).attr("src","uploads/images/buttons/but_web-blue_a.gif");
  	$('.remote-blue img').attr("src","uploads/images/buttons/but_remote-blue_i.gif");
  		}, function() {
  	$(this).attr("src","uploads/images/buttons/but_web-blue_i.gif");
  });
});