function goLocation(theObject) {
	window.location=$(theObject).find("a.bglnk").attr("href");
	return false;
}
		
$(document).ready(function(){

	$('input[type="text"], textarea').focus(function() {
	    value=$(this).val();
	    $(this).attr("value","");
	});
	$('input[type="text"], textarea').blur(function() {
	    if($(this).val()=="") {
	        $(this).val(value);
	    }
	});
    
    $('<img src="http://www.fleurdesel-paris.com/wp-content/themes/fds/navpics/titres/collection_PE_blanc.gif" alt="Collection Printemps/Été" class="over" />').prependTo('#menu-item-22 a');
    $('<img src="http://www.fleurdesel-paris.com/wp-content/themes/fds/navpics/titres/collection_PE_noir.gif" alt="Collection Printemps/Été" class="normal" />').prependTo('#menu-item-22 a');
    
    $(".menu-item-22 a").hover(function(){
        $(this).find('.normal').animate({'opacity': '0'}, 400);
        $(this).find('.over').animate({'opacity': '1'}, 400);
    },function(){
        $(this).find('.normal').animate({'opacity': '1'}, 400);
        $(this).find('.over').animate({'opacity': '0'}, 400);
    });

    $('<img src="http://www.fleurdesel-paris.com/wp-content/themes/fds/navpics/titres/boutiques_blanc.gif" alt="Boutiques - Explorez les" class="over" />').prependTo('#menu-item-26 a');
    $('<img src="http://www.fleurdesel-paris.com/wp-content/themes/fds/navpics/titres/boutiques_noir.gif" alt="Boutiques - Explorez les" class="normal" />').prependTo('#menu-item-26 a');
    
    $(".menu-item-26 a").hover(function(){
        $(this).find('.normal').animate({'opacity': '0'}, 400);
        $(this).find('.over').animate({'opacity': '1'}, 400);
    },function(){
        $(this).find('.normal').animate({'opacity': '1'}, 400);
        $(this).find('.over').animate({'opacity': '0'}, 400);
    });

});
		

