$(function() {
    $("a[href='vervideo']").click(function(){
        var html = '<object width="293" height="219">' +
                    '<param name="movie" value="http://www.youtube.com/v/' + $(this).attr("rel") + '&hl=es&fs=1"></param>' +
                    '<param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>' +
                    '<embed src="http://www.youtube.com/v/' + $(this).attr("rel") + '&hl=es&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always"' +
                    'allowfullscreen="true" width="293" height="219">' +
                    '</embed></object>';
       $("#videovisor").html(html).removeClass("reproductormp3");
       return false;
    });
    $("a[href='vervimeo']").click(function(){
        var html = '<object width="293" height="219"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" />' +
                    '<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=' + $(this).attr("rel") + '&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" />' +
                    '<embed src="http://vimeo.com/moogaloop.swf?clip_id=' + $(this).attr("rel") + '&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="293" height="219"></embed>' +
                    '</object>';
       $("#videovisor").html(html).removeClass("reproductormp3");
       return false;
    });
    
    
	$("a[href='escuchar']").click(function(){
		var html = '<object type="application/x-shockwave-flash" data="swf/player_mp3.swf" width="200" height="20">' +
					'<param name="movie" value="swf/player_mp3.swf" />' +
					'<param name="FlashVars" value="mp3=descargas/PalomaCadenaSer.mp3&amp;bgcolor1=ffffff&amp;bgcolor2=cccccc&amp;buttoncolor=999999&amp;buttonovercolor=5a0089&amp;slidercolor1=cccccc&amp;slidercolor2=999999&amp;sliderovercolor=666666&amp;textcolor=5a0089" />' +
					'</object>';
       $("#videovisor").html(html).addClass("reproductormp3");
       return false;
	});
});

