$(document).ready(function() {
	$('.external').attr('target','_blank');

	$('.glossar .content').hide();
	$('.glossar .title').toggle(function(){
		$(this).parent().find('.content').slideDown();
	},function(e){
		$(this).parent().find('.content').slideUp();
	})    
	$(".domainorder").fancybox({ 'type': 'iframe', 'width' : 600, 'height' : 500 });
	$('h3.save').hover(function(){
		$(this).css('background-color','#1A7BA5');
	},function(e){
		$(this).css('background-color','#009ADA');
	});
});
