// JavaScript Document
$(document).ready(function(){
	
	$('.round').corner("keep  cc:#633026");
	$('.roundh').corner("keep");
	$('#footer').css('opacity', '0.8');
	include('ils','../schule/ils.html');
	include('sgd','../schule/sgd.html');
	include('haf','../schule/haf.html');
	include('feb','../schule/feb.html');
	include('whb','../schule/whb.html');
	include('akad','../schule/akad.html');
	include('pixelio','../schule/pixelio.html');
	include('apollon','../schule/apollon.html');
	include('iww','../schule/iww.html');
	include('euro','../schule/eurofh.html'); 
	//transfer();
	//facebook();
});

function facebook(){
	$('#facebook').css({'background':'#fff'});
}

function hov (element){
	$(element).mouseover(function(){
		$(this).css({
			"font-weight":"700",
			"text-shadow": "2px 2px 5px #fff"
		});
		$(this).mouseout(function(){
			$(this).css({
				"font-weight":"100",
				"text-shadow": "0px 0px 0px #fff"
			});
		});
	});
}

function include(id,link){

	$.ajax({
		url: link,
		dataType:'HTML',
		type:'POST',
		success:function(msg){
			$('#'+id).html(msg);
                        //opa();
		}
	});
 }
