	
	// -- MENU FUNCTIONS ----------------------------------------------------------------------------------------------------------------------------------------------//
	
	function cmsAcc_menu(y) {
		
		y = (y * -133);
		
		var x = (menuLeft) ? (menuLeft * -210) + "px" : "0px";
		
		$("#menu").css("background-position", x + " " + y + "px");
		
	}
	
	function cmsAcc_menuInit() {
		
		$(document).ready(function() {
			
			var x = (menuLeft) ? (menuLeft * -210) + "px" : "0px";
			$("#menu").css("background-position", x + " 0px");
			
		});
		
	}
	
	// -- MENU FUNCTIONS ----------------------------------------------------------------------------------------------------------------------------------------------//

$(function(){
	
	$('.footer_hover img').mouseover(function(e){
		offset = $(this).offset();
		
		to = setTimeout( function() {$('#footer_hover').hide()} , 3000);
		$('#footer_hover').text($(this).attr('alt')).css({'left': (offset.left-$('#footer_hover').width()-10)+'px'}).show()
						.mousemove(function(){
								clearTimeout(to);
							})
						.mouseover(function(){
								clearTimeout(to);
							})
						.mouseout(function(){
							clearTimeout(to);
							to = setTimeout( function() {$('#footer_hover').hide()} , 700);
						});
	});
	
	
	
});