$(document).ready(function(){
	$('.colorbox').colorbox();
	
	if($('#content_left.home').length > 0){
		$("#left, #right").each(function(){
			var arrow = $('#'+ $(this).attr('id') +'_current');
			var content = $('#content_'+ $(this).attr('id'));
			
			var a = $(this).find('> a').bind('mouseenter', function(){
				content.find('> div').hide();
				
				
				$(this).append(arrow);
				$('#menu_text_'+ $(this).attr('id').substr(5)).show();
			});
			
			a.eq(0).triggerHandler('mouseenter');
		});
	}
});

