jQuery().ready(function(){
    $(".footerLogosRight a")
        .mouseover(function () {
			$("img", $(this)).attr("src", $("img", $(this)).attr("src").replace(/\./, '-ov.'));
		})
	    .mouseout(function () {
    		$("img", $(this)).attr("src", $("img", $(this)).attr("src").replace(/\-ov/, ''));
    	});
    $(".footerLogosLeft a")
	    .mouseover(function () {
			$("img", $(this)).attr("src", $("img", $(this)).attr("src").replace(/\./, '-ov.'));
		})
	    .mouseout(function () {
    		$("img", $(this)).attr("src", $("img", $(this)).attr("src").replace(/\-ov/, ''));
    	});
    	
    jQuery('#navigation').accordion({ 
        active: false, 
        header: '.firstLevelLink', 
        navigation: true, 
        event: 'mouseover', 
        fillSpace: false,
        autoheight: false,
        animated: 'easeslide' 
    });
});
