﻿
$(function(){
  
		   
	// onglets sidebar
	$('.widget_rrm_recent_posts').before('<li id="onglets"></li>');
	$('#onglets').append($('.widget_rrm_recent_posts h2').addClass('tt_recent_posts').wrapInner('<a class="inner" title="actu Kokeshi"/>'));
	$('#onglets').append($('.widget_recent_comments h2').addClass('tt_recent_comments').wrapInner('<a class="inner" title="derniers commentaires"/>'));
	$('#onglets').append('<div class="clear"></div>');
	// active le premier onglet
	$('.widget_recent_comments').hide();
	$('.tt_recent_posts').addClass('courant');
	$('.tt_recent_posts').click(function(){
		$('.widget_recent_comments').hide();
		$('.tt_recent_comments').removeClass('courant');
		$('.widget_rrm_recent_posts').show();
		$('.tt_recent_posts').addClass('courant');
	});
	$('.tt_recent_comments').click(function(){
		$('.widget_rrm_recent_posts').hide();
		$('.tt_recent_posts').removeClass('courant');
		$('.widget_recent_comments').show();
		$('.tt_recent_comments').addClass('courant');
	});
	
	// widget liens
	$('.widget_links').wrapInner('<span class="inner" />').wrapInner('<span class="inner" />');
	
	// replie le menu
	$('.pages li:not(.current_page_ancestor, .current_page_item) ul').css('display','none');
	$('.pages li li.current_page_ancestor  ul,.pages li li.current_page_item ul').css('display','none');
	
	
	
	
	
	
	
	/*$("ul.pages li.current_page_item ul li").not("ul.pages li.current_page_item ul li ul ").hide()*/
	
	
	
	
$("ul.pages li li").not("ul.pages li ul li ul li").hover(
														 function(){$(this).find('ul').css('display','block');}
														 ,
														 function(){$(this).find('ul').css('display','none')}
														 );

	
	
	/*    $.each( $('.pages li li li').parents(),  
    function(i, e){  
          console.log(e);  
     }  
    );  */
	
	
	
	
	
	
	
	
	
	
	
	
	// champ de recherche
	$('#sidebar-gauche #searchform #s').attr('value', 'mots-clés, noms,...');
	$('#sidebar-gauche #searchform #s').focus(function(){
		if($('#sidebar-gauche #searchform #s').attr('value') == 'mots-clés, noms,...'){
			$('#sidebar-gauche #searchform #s').attr('value', '');
		}
	});
	$('#sidebar-gauche #searchform #s').blur(function(){
		if($('#sidebar-gauche #searchform #s').attr('value') == ''){
			$('#sidebar-gauche #searchform #s').attr('value', 'mots-clés, noms,...');
		}
	});
	
	
	$('.hentry #searchform #s').attr('value', 'rechercher dans le site');
	$('.hentry #searchform #s').focus(function(){
		if($('.hentry #searchform #s').attr('value') == 'rechercher dans le site'){
			$('.hentry #searchform #s').attr('value', '');
		}
	});
	$('.hentry #searchform #s').blur(function(){
		if($('.hentry #searchform #s').attr('value') == ''){
			$('.hentry #searchform #s').attr('value', 'rechercher dans le site');
		}
	});
	
	
	
/*$("#sidebar-gauche .page-item-9 a").attr("title","Gaspard & sa bande").css('border','1px solid red')*/

});
