function loadVideoById(id){
    if (ytplayer){
        $('#yt').show();
        $('#flash').hide();
        ytplayer.loadVideoById(id);
    }
}
function loadFlash(){
	$('#video_wrapper').hide();
	$('#flash').show();
    $('#yt').hide();
}

function onYouTubePlayerReady(playerId) {
    ytplayer = document.getElementById("myytplayer");
}


$(document).ready( function(){
    //JQuery para activacion color gris botones  The work | La obra | L'oeuvre | L'opera | A obra | Das Werk | L'obra  cuando esten visitados.
    $('.bt').click(function() {
        $('.bt').attr('style','');
        $(this).attr('style','color:#666666');
    });

//Rollover de imagenes botones
$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});

//Rollover de imagenes botones de productes
$(function() {
    $('.rollover_prod').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
        $('#titulo_productes').html('Maria');
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});


});
