$(document).ready(function(){

    $('#demo').Horinaja({
        capture:'demo',delai:0.3,
        duree:4,pagination:true
    });


    $('#menu a')
	.mouseover(function(){
            $(this).stop().animate(
                {backgroundPosition: "0px 0px"},
                500)
            })
	.mouseout(function(){
            $(this).stop().animate(
		{"backgroundPosition":"0px -80px"},
		500)
            })

    $('input[type="text"],textarea').focus(function(){
            if($(this).val() == $(this).attr('alt')){
                $(this).val('')
            }
            $(this).css('color','#333')
    })

    $('input[type="text"],textarea').blur(function(){
            if($(this).val() == ''){
                $(this).attr('value', $(this).attr('alt'))
                $(this).css('color','#AAA')
            }
    })

});

