/**
 *  Verschiedenen Javascript Funktionen 
 *  @ Intabo GmbH 2007
 *  
 */

/*****************************************************************/
/*** externe Links auszeichnen ***/
$(function(){
	$("a[@href*='http:']").css({background: "url(/images/ext_link.gif) no-repeat right", padding: "0 10px 0 0"});
	$("a[@href*='http:']/img").parent().css({background: "transparent", padding: "0"});
});

/** Aktiven Menüpunkt kennzeichnen **/
$(function(){
   var path = location.pathname.substring(1);
   if ( path )
     $('#col2_content li a[@href$="' + path + '"]').parent().attr('class', 'current');
     $('#col1_content li a[@href$="' + path + '"]').parent().attr('class', 'current');
});

/** Form Validierung **/
$(function(){
    $("#kontaktformular").validate(); 
});

/*** Lightbox aktivieren ***/
$(function() {
	$('a[@rel*=lightbox]').lightBox(); 
});

   
