// navigation.js

/* topmenu  */
$(document).ready(function() {
	if ($('#topmenu li ul') != null) {
		$('#topmenu li ul').hide(0);
	}
	if ($('#topmenu li.active ul') != null) {
		$('#topmenu li.active ul').show(0);
	}
	if ($('#topmenu li:not(.active)') != null) {
		$('#topmenu li:not(.active)').hover(function() {
			$(this).find('ul:hidden').fadeIn(100);
		}, function() {
			$(this).find('ul:visible').fadeOut(100);
		});
	}
});

/*Scrollbar*/
$(document).ready(function() {
    // speed, dragHeight, trackHeight, trackObj, upObj, downObj, dragObj, contentMaskObj, contentObj
    try {
    myScroll = new ScrollObj(6,10,319,"scrollbar_balken","scrollbar_up","scrollbar_down","scrollbar_griff","body_center","scroller");
    } catch (e) {
    }
});

/* fix the ongs in ie6 */
$(document).ready(function() {
	if($('img[@src$=.png]') != null) {
		$('img[@src$=.png]').ifixpng(); 
	}
});