// Definiere den noConflict-Parameter
var jQ = jQuery.noConflict();


//Spalten in Gleicher höhe
jQ(document).ready(function(){
	jQ('.bd > div').syncHeight();

	jQ(".logolink a img").hover(
		function(){
			this.src = this.src.replace("-off","-on");
		},
		function(){
			this.src = this.src.replace("-on","-off");
		}
	);


});
