// 
//  sonarium.js
//  sonarium
//  
//  Copyright 2010 mirador. All rights reserved.
// 

$(document).ready(function(){
	
    $("a[href$='pdf']").addClass('pdf');
    $("a[href$='mp3']").addClass('mp3');

	
	$('.level_1 li a,#footer a').hover(function(){
		
		$(this).stop().animate({color: '#4c749d' },100);
		
	},function(){
		
		$(this).stop().animate({color: '#000000'},100);
		
	});
	
	$('#content').localScroll();
	
	if( $('#startseite').length > 0){
		$('#content').css('padding-top','0');
		$('#content').prepend('<img class="m20" src="tl_files/sonarium/content/header_startseite.jpg">');
	}
	
	$subitems = $('#subnavigation ul li').length;
    
	if( $subitems > 0 ){
	
	if( $subitems > 4){
		
		$('#subnavigation').css('height','120px');
		
	}
	
	$('#subnavigation ul li a').not('.active').css('background-position','0% 0%');
	
	$('#subnavigation ul li:eq(4)').css('margin-left','0');
	
	$('#subnavigation ul li a').not('.active').hover(function(){
		
		$(this).stop().animate({
			backgroundPosition: '100% 0%',
			color: '#fff'
		},500);
		
	},function(){
		
		$(this).stop().animate({
			backgroundPosition: '0% 0%',
			color: '#000'
		},500);
		
	});
	
	}else{}
	
	
	$('a.top').hover(function(){
		
		$(this).stop().animate({
			backgroundPosition: '0% 3px'
		},500);
		
	},function(){
		
		$(this).stop().animate({
			backgroundPosition: '0% 2px'
		},500);
		
	});
	
});

