Shadowbox.loadSkin('shadowbox', '/style/');
window.onload = Shadowbox.init;


$(document).ready(function() {

	//alle externen Links kennzeichnen
  	$('a').filter(function() {
    	return this.hostname && this.hostname !== location.hostname;
  	}).addClass('external');

  	//alle externen Links in Analytics
  	$("a.external").click(function(){

	    var site = $(this).attr('href');
	    site = site.replace("http://", "");

	    _gaq.push(['_trackEvent', 'external', site]);

  	});

  	// Validierung
	$("#validate_form").validate();


});
