// Unternavigation in der Breite Anpassen wie aktuelle Hauptnavigationspunktbreite
var $j = jQuery.noConflict();
$j(document).ready(function() {
	$j('#TOP_MENU').find('> li').each(function(i) {
		var imageWidth = $j(this).find('> a > img').width();
		$j(this).find('> ul').css('width', imageWidth);
	});
});

// Nav-Handling für IE..
$j(document).ready(function() {
	$j('#TOP_MENU').find('> li').hover(function() {
		$j(this).find('ul').css('display', 'block');
	}, function() {
		$j(this).find('ul').css('display', 'none');
	});
});
