/**
 * javascript for HB Immobilien
 */
 
 /**
  *	system init
  */
 var init = function (){
	top_navi_init();
 }

 var top_navi_init = function (){
		
		ms_over_init($('#hd_1'));
		ms_over_init($('#hd_2'));
		ms_over_init($('#hd_3'));
		ms_over_init($('#hd_4'));
		ms_over_init($('#hd_5'));

 }

 var ms_over_init = function (o) {
	o.mouseover( function(){
			o.addClass("mouseover");	
		}
	).mouseout( function (){
			o.removeClass("mouseover")
		}
	);
 }

 
 /**
  * main funciton start here.
  */
 $(document).ready( function(){
	init();
 });