$(document).ready(function(e) {
	
	$('#menu').find('li').each(function(index, element) {
		
		$(element).click(function(event){sel_me(element);
		var x = $(element).offset().left-$('#pointer').offset().left;
		var w = $(element).width()/2;
		$('#pointer').stop().css({'backgroundPosition':((x+w)-750)})
		var mine = $(element).find('a').attr('id').split('_')[0];
		$('.box_content').not('.'+mine).fadeOut(500);
		$('.'+mine).fadeIn(500);
		});
	});
	
	$('#menu').find('li:first-child').click();
	$('.enter_but_2').hover(function(){ $(this).stop().animate({'opacity':1},0)},function(){$(this).stop().animate({'opacity':0},0)});
});


