//menu
$(document).ready(function()
{
	
	$('#custom_menu_accordion p.menu_head').click(function(e)
    {
		var checkClick = $(this).next();
		
	     /*$(this).css({backgroundImage:'url(assets/templates/terre/images/menu_bg_active.jpg)','backgroundRepeat': 'no-repeat',
			'backgroundPosition': 'top center'}).next("div.menu_body").slideToggle("fast").siblings("div.menu_body").slideUp("fast");
	     
         $(this).siblings("#custom_menu_accordion p.menu_head").css({backgroundImage:'url(assets/templates/terre/images/menu_bg_normal.jpg)','backgroundRepeat': 'no-repeat',
			'backgroundPosition': 'top center'});
		 $(this).siblings("#custom_menu_accordion p.menu_head_alone").css({backgroundImage:'url(assets/templates/terre/images/menu_bg_normal.jpg)','backgroundRepeat': 'no-repeat',
			'backgroundPosition': 'top center'});
		 e.preventDefault();*/
	});
	
	
	$('#custom_menu_accordion p.actived').css({backgroundImage:'url(assets/templates/terre/images/menu_bg_active.jpg)','backgroundRepeat': 'no-repeat',
			'backgroundPosition': 'top center'}).next("div.menu_body").slideDown("fast").siblings("div.menu_body").slideUp("fast");
	
	
});