Chueca, Federico (1846-1908) http://data.bibliotheken.nl/id/thes/p070771308 an entity of type: Person <!-- -->

RDFTurtleN-TriplesJSON-LD







Chueca, Federico (1846-1908)



http://data.bibliotheken.nl/id/thes/p070771308


an entity of type: Person





<!--


-->







componist






































Chueca, Federico (1846-1908) 



























1908 






























Federico Chueca 

























1846 

























Chueca 

























Federico 


















schema:Person











<http://www.wikidata.org/entity/Q652534>







<http://viaf.org/viaf/44484675>














_:5447a0e96a4cb65790e231c9980a6b32










blank nodes








_:5447a0e96a4cb65790e231c9980a6b32





























070771308 


















foaf:Document











<http://data.bibliotheken.nl/doc/thes/p070771308>












<http://data.bibliotheken.nl/id/dataset/persons>












<http://data.bibliotheken.nl/id/thes/p070771308>












<https://opendatacommons.org/licenses/by/1-0/>






































data from the linked data cloud














  • data from: http://data.bibliotheken.nl/sparql




  • view as: RDF, Turtle, N-Triples, JSON-LD




var col1 = 0;
var col3 = 0;
var paginator =
"to top" : $('body'),
"direct relations" : null,
"blank nodes" : null,
"inverse relations" : null,
"data from the linked data cloud" : null
;

$('#logo').click(function()
document.location = 'http://data.bibliotheken.nl';
);

var callingPage = null;
var callingPageTitles = null;
$(function()

/* error images */
lodview.setErrorImage($('#widgets').find('img'));

/* improving interface */
lodview.setColumnsSize();
lodview.betterHeader();
$(window).on('resize', function()
lodview.betterHeader();
var img = $('body').find('img.hover');
if (img.length > 0)
lodview.zoomHelper(img);
var map = $('body').find('#maphover');
if (map.length > 0)
lodview.zoomHelper($('body').find('.maphover'), map, true);
);
lodview.betterTypes();


lodview.imagesInWidget();
lodview.mapInWidget();
$(document).keyup(function(e)
if (e.keyCode === 27)
//close fullscreen images and maps
lodview.closeFull();

);
/* adding info tooltips */
lodview.infoTooltip('init');

/* footer functions */
lodview.footer();

/* managing languages */
lodview.multiLabels();

/* recovering connected titles from relations */
lodview.connectedResourceTitles();

/* navigation tool */
lodview.rNavigator();

/* grabbing informations from the LOD cloud */
lodview.grabData();

$(window).on('load', function()
/* removing lodCloud block if empty */
if ($('.linkingElement').length > 0)
paginator["data from the linked data cloud"] = $('#lodCloud');

if ($('#directs').children(":first").length == 0)
$('#directs').addClass("empty");
else
paginator["direct relations"] = $('#directs');

if ($('#bnodes').not('.empty').length > 0)
paginator["blank nodes"] = $('#bnodes');

lodview.imagesInWidget(true);
);
);

var lodview =
zoomHelper : function(img, obj, alignLeft,ow,oh)
var l = this;
if (alignLeft)
var ww = window.innerWidth;
var wh = window.innerHeight;
if (obj)
obj.css(
width : ww - 70,
height : wh
);

img.css(
width : ww - 70,
height : wh,
opacity : 0,
left : 0,
top : 0
);
else
var ww = window.innerWidth - 100;
var wh = window.innerHeight - 100;

var w = ww;
var h = wh;

try
w = ow?ow:img.naturalWidth();
h = oh?oh:img.naturalHeight();
catch (e)

if (!w)
w = ww;

if (!h)
h = wh;

// image bigger than the window
if (w > ww)
h = ww * h / w;
w = ww;

if (h > wh)
w = wh * w / h;
h = wh;

if (obj)
obj.css(
width : w,
height : h
);

img.css(
width : w,
height : h,
opacity : 0,
left : '50%',
top : '50%',
marginLeft : -(w / 2),
marginTop : -(h / 2)
);

img.fadeTo(300, 1);
,
betterTypes:function()
$('.dType').each(function()
var w = $(this).width();
$(this).closest('div.c2').css(
paddingRight : w + 7
)
);
,
drawMap : function drawMap(id, lat, lon, testoPopup, fullVersion)
var map = null;
if (fullVersion)
var map = L.map(id).setView([ lat, lon ], 8);
L.marker([ lat, lon ]).addTo(map).bindPopup(testoPopup).openPopup();
else
map = L.map(id,
scrollWheelZoom : false,
zoomControl : false
).setView([ lat, lon ], 3);
L.marker([ lat, lon ]).addTo(map);

var osmurl = 'http://s.tile.osm.org/z/x/y.png';
if(document.location.href.indexOf('https://') == 0)
osmurl = 'https://s.tile.openstreetmap.org/z/x/y.png';

L.tileLayer(osmurl,
attribution : '© OpenStreetMap contributors'
).addTo(map);

,
mapInWidget : function(forceLoad)
if ($('map').length > 0)
var l = this;
l.drawMap("resourceMap", '', '');
var a = $('#resourceMap');
var w = a.width();
var h = a.height();
var tools = $('
')
var zoom = $('');
tools.append(zoom);
zoom.click(function()
l.fullMap('', '', 'Chueca, Federico (1846-1908)');
);
a.prepend(tools);
a.hover(function()
$(this).find('.imgTools').stop().fadeIn('fast');
, function()
$(this).find('.imgTools').stop().fadeOut('fast');
);

,
imagesInWidget : function(forceLoad)
var l = this;
if (forceLoad)
$('#widgets>div#images>a>img').load();
else
$('#widgets>div#images>a>img').load(function()
var w = $(this).width();
var h = $(this).height();
$(this).parent().animate(
minWidth : w
, 'slow', 'swing');
var a = $(this).parent();
var anchor = a.attr("href");
if (anchor)
var tools = $('
')
var zoom = $('');
var open = $('');
tools.append(open);
tools.append(zoom);
open.click(function()
window.open($(this).parent().attr("data-href"));
);
zoom.click(function()
var aImg = $(this).parent().parent().find('img');
l.fullImg(aImg.clone(true),aImg.naturalWidth(),aImg.naturalHeight());
);
tools.attr("data-href", anchor);
a.removeAttr("href");
a.css(
'cursor' : 'default'
);
a.prepend(tools);
a.hover(function()
$(this).find('.imgTools').stop().fadeIn('fast');
, function()
$(this).find('.imgTools').stop().fadeOut('fast');
);

);

,
closeFull : function()
$('body').find('div.hover').fadeOut(350, function()
$(this).remove()
);
$('body').find('#maphover').fadeOut(200, function()
$(this).remove()
);
$('body').find('img.hover').fadeOut(200, function()
$(this).remove()
)
,
fullMap : function(lat, lon, testoPopup)
var l = this;
$('body').find('.hover').remove();
var layer = $('
');
var map = $('
');
layer.click(function()
l.closeFull();
);
map.find('.closemapzoom').click(function()
l.closeFull();
);
$('body').append(layer);
$('body').append(map);
l.zoomHelper(map, $('#maphover'), true);
layer.fadeIn(300, function()
l.drawMap("maphover", lat, lon, testoPopup, true);
);
,
fullImg : function(img,w,h)
var l = this;
img.addClass('hover');
$('body').find('.hover').remove();
var layer = $('
');
layer.click(function()
l.closeFull();
);
img.click(function()
l.closeFull();
);
$('body').append(layer);
layer.fadeIn(300, function()
$('body').append(img);
img.show();
img.fadeTo(0, 0);
l.zoomHelper(img,null,null,w,h);
);
,
betterHeader : function()
var IRI = $('h2>.iri');
var istance = $('h2>.istance');
var istsize = 0;
istance.find('a').each(function()
istsize += $(this).width();
);
if (window.innerWidth - IRI.width() - istsize 0)
$('#lconnected').fadeIn('fast');
l.doConnectedResourceTitles(abouts, function()
l.getInverses()
);
else
l.getInverses();

,
doConnectedResourceTitles : function(abouts, onComplete)
return $.ajax(
url : "http://data.bibliotheken.nl/linkedResourceTitles",
data :
"abouts" : abouts,
"IRI" : "http://data.bibliotheken.nl/id/thes/p070771308",
"sparql" : "http://data.bibliotheken.nl/sparql",
"prefix" : "http://data.bibliotheken.nl/"
,
method : 'POST',
beforeSend : function()

,
success : function(data)
data = $(data);
data.find('resource').each(function()
var IRI = $(this).attr("about");
var title = $(this).find("title").text();
$('a.isLocal[title=""]').each(function()
if ($(this).find('tt').length == 0)
$(this).append("
" + title + "");

)
);
,
error : function(e)
/* TODO: manage errors */
,
complete : function()
/* inverse relations */
if (onComplete)
onComplete();


);
,
multiLabels : function()
var l = this;
var cLocale = 'en';
$('.value').each(function()
var cnt = $(this);
var multipleLang = false;
var plang = "";
$('.lang', cnt).each(function()
var lang = $(this).attr("data-lang");
if (lang != plang && plang != '')
multipleLang = true;

plang = lang;
);
if (multipleLang)
$('.lang', cnt).each(function()
var lang = $(this).attr("data-lang");
if ($.trim(lang) && cnt.find("span.clang." + lang).length == 0)
var clang = $("" + lang + "");
clang.click(function()
var lang = $(this).text();
$(this).parent().children('div').hide();
$(this).parent().children('div.lang.' + lang).show();
$(this).parent().children('span.clang').removeClass('sel');
$(this).addClass('sel');
);
cnt.find("div:first").before(clang);

);
cnt.find('.clang').sort(function(a, b)
var contentA = $(a).text();
var contentB = $(b).text();
return (contentA contentB) ? 1 : 0;
).prependTo(cnt);

var btt = cnt.children('span.clang.' + cLocale);
if (btt.length == 0)
btt = cnt.children('span.clang.en'); // fallback to
// english

if (btt.length == 0)
btt = cnt.children('span.clang:first');

btt.click();
else
$('.lang', cnt).each(function()
var lang = $(this).attr("data-lang");
if ($.trim(lang))
var a = $(this);
if (a.find("div.fixed").length > 0)
a = a.find(".fixed");

a.append("@" + lang + "");

$(this).removeClass('lang');
);

);
,
infoTooltip : function(act, obj)
var l = this;
if (act === 'init')
$('[data-label]').each(function()
if ($(this).attr('data-label'))
var iph = $('');
$(this).before(iph);
$(this).parent().hover(function()
l.infoTooltip('showInfoPoint', $(this));
, function()
l.infoTooltip('remove', $(this));
);
/*
* $(this).parent().on('mousemove', function()
* l.infoTooltip('checkInfoPoint', $(this)); );
*/

);
else if (act === 'checkInfoPoint')
if (obj.find('i').length == 0)
var i = $('');
obj.prepend(i);
i.hover(function()
l.infoTooltip('show', obj);
, function()
l.infoTooltip('remove', obj);
);

else if (act === 'showInfoPoint')
var i = $('');
obj.prepend(i);
i.show();
i.hover(function()
l.infoTooltip('show', obj);
, function()
l.infoTooltip('remove', obj);
);
else if (act === 'show')
var data = obj.children('[data-label]');
var t = $('
' + data.attr("data-label") + '' + (data.attr("data-comment") ? '
' + data.attr("data-comment") : '') + '');
obj.prepend(t);
var th = obj.position().top - $(window).scrollTop() + t.height();
var wh = window.innerHeight - 50;
if (th > wh)
t.css(
marginTop : '-' + (t.height() + 23) + 'px'
);

t.css(
display : 'none',
visibility : 'visible'
);

t.show();
else if (act === 'remove')
var p = obj.parent();
p.find('.tooltip').fadeOut('fast', function()
$(this).remove();
);
p.find('.i').fadeOut('fast', function()
$(this).remove();
);

,
getInverses : function()
var l = this;
l.lMessage("loading connected resource titles");
var invCont = $('#inverses');
var iri = "http://data.bibliotheken.nl/id/thes/p070771308";
if (iri)
$('#linverse').delay(100).fadeIn('fast');
$.ajax(
url : "http://data.bibliotheken.nl/linkedResourceInverses",
method : 'POST',
data :
"IRI" : iri,
"sparql" : "http://data.bibliotheken.nl/sparql",
"prefix" : "http://data.bibliotheken.nl/"
,
beforeSend : function()

,
success : function(data)
data = $(data);

if (data.find('resource').length > 0)
invCont.removeClass("empty");
invCont.append($("

inverse relations"));
paginator["inverse relations"] = invCont;

data.find('resource').each(function()

var IRI = $(this).attr("nsabout");
if (IRI.indexOf("null:") == 0)
IRI = '<' + $(this).attr("about").replace(/(http://.+[/#])([^/#]+)$/, '$1$2') + ">";
else
IRI = IRI.replace(/:/, ':') + '';

var count = $(this).find("count").text();
var msg = "is 0 of";
// TODO: add link!
msg = msg.replace(/0/, "" + IRI);

var el = $("
" + count + " " + (count == 1 ? "resource" : "resources") + "");
anchor.click(function()
if (anchor.parent().hasClass('isOpened'))
anchor.parent().find('.toOneLine,.prevArrow,.nextArrow,.lloadingb').remove();
anchor.parent().removeClass('isOpened');
anchor.parent().removeClass('opened');
else
var property = $(this).attr('data-property');
var contInverse = $(this).parent();
anchor.parent().addClass("isOpened");
var start = 0;
$.ajax(
url : "http://data.bibliotheken.nl/linkedResourceInverses",
method : 'POST',
data :
"start" : start,
"IRI" : "http://data.bibliotheken.nl/id/thes/p070771308",
"property" : property,
"sparql" : "http://data.bibliotheken.nl/sparql",
"prefix" : "http://data.bibliotheken.nl/"
,
beforeSend : function()
anchor.parent().find('.toOneLine,.prevArrow,.nextArrow,.lloadingb').remove();
anchor.after("");
,
success : function(data)
data = $(data);
var abouts = [];
data.find('resource').each(function()
var IRI = $(this).attr("nsabout");
if (IRI.indexOf("null:") == 0)
IRI = '<' + $(this).attr("about") + ">";

if (IRI.indexOf(":") == -1)
IRI = "_:" + $(this).attr("about");

var title = $(this).find("title").text();
var url = $(this).attr("propertyurl")
contInverse.append($("
" + IRI + ""));
abouts.push($(this).attr("about"));
);
$('.toOneLine', contInverse).show();
if (count > 10)
anchor.parent().addClass("opened");

if (abouts.length > 0)
l.doConnectedResourceTitles(abouts, function()
anchor.parent().find('.lloadingb').hide();
);
else
anchor.parent().find('.lloadingb').hide();

,
complete : function()
if (count > 10)
var prev = $('
');
var next = $('
');
prev.css(
'opacity' : '0.3',
'cursor' : 'default'
);
next.click(function()
return l.paginating('next', $(this), start, property, count);
);
anchor.after(next);
anchor.after(prev);


,
error : function()
contInverse.append($("
sorry, an error occurred"));


);

return false;
);
invCont.append(el);
var value = $("
");
value.append(anchor);
invCont.append(value);
if ("open" == "open")
anchor.click();

);
l.setColumnsSize(true);
$('#linverse').append('').find('img').fadeIn('fast');
,
error : function(e)
$('#linverse').append('');
,
complete : function()
l.lMessage(null, 'close');

);


,
paginating : function(direction, anchor, start, property, count)
var l = this;
if (direction == 'next')
start = start + 10;
else if (start > 0)
start = start - 10;

var contInverse = anchor.parent();
if (callingPage)
callingPage.abort();

if (callingPageTitles)
callingPageTitles.abort();

callingPage = $.ajax(
url : "http://data.bibliotheken.nl/linkedResourceInverses",
method : 'POST',
data :
"start" : start,
"IRI" : "http://data.bibliotheken.nl/id/thes/p070771308",
"property" : property,
"sparql" : "http://data.bibliotheken.nl/sparql",
"prefix" : "http://data.bibliotheken.nl/"
,
beforeSend : function()
contInverse.find('.toOneLine').addClass('toRemove').css(
'opacity' : 0.2
);
contInverse.find('.prevArrow,.nextArrow').remove();
contInverse.find('.lloadingb').show();
var prev = $('
');
var next = $('
');
if (start + 10 > count)
next.css(
'opacity' : '0.3',
'cursor' : 'default'
);
else
next.click(function()
return l.paginating('next', $(this), start, property, count);
);

if (start > 0)
prev.click(function()
return l.paginating('prev', $(this), start, property, count);
);
else
prev.css(
'opacity' : '0.3',
'cursor' : 'default'
);

contInverse.find('a:first').after(next);
contInverse.find('a:first').after(prev);
,
success : function(data)
data = $(data);
var abouts = [];
data.find('resource').each(function()
var IRI = $(this).attr("nsabout");
if (IRI.indexOf("null:") == 0)
IRI = '<' + $(this).attr("about") + ">";

if (IRI.indexOf(":") == -1)
IRI = "_:" + $(this).attr("about");

var title = $(this).find("title").text();
var url = $(this).attr("propertyurl")
contInverse.append($("
" + IRI + ""));
abouts.push($(this).attr("about"));
);

if (abouts.length > 0)
callingPageTitles = l.doConnectedResourceTitles(abouts, function()
contInverse.find('.toOneLine.toRemove').remove();
$('.toOneLine', contInverse).show();
contInverse.find('.lloadingb').hide();
);
else
contInverse.find('.toOneLine.toRemove').remove();
$('.toOneLine', contInverse).show();
contInverse.find('.lloadingb').hide();

anchor.unbind('click');
,
complete : function()
,
error : function()
contInverse.find('.toOneLine').remove();
contInverse.append($("
sorry, an error occurred"));

);
return false;
,
grabData : function()
var l = this;
var linkingList = [];
var counter = 0;
var errors = 0;
var map = $('map:first');
$('.linkingElement').each(function()
var link = $.trim($(this).attr("href"));
linkingList.push(link);
);

/* lod cloud */
if (linkingList.length == 0)
$('#lodCloud').empty();
$('#lodCloud').addClass("empty");
$('#linking').hide();
else
$('#linking').fadeIn('fast');
var container = $('#lodCloud').children("div");
var dest = $('
');
var content = $("
");

content.append("

Resource connected u003Cstrongu003E0u003C/strongu003E")
content.append("

Resource not online u003Cstrongu003E0u003C/strongu003E")
content.append("

Resource loaded u003Cstrongu003E0u003C/strongu003E")

dest.append(content);
container.append(dest);

// initialize
container.masonry(
itemSelector : '.connected'
);

l.updateCounter(linkingList.length, counter, errors);
l.grabSingleResource(linkingList, counter, errors, map);

,
grabSingleResource : function(linkingList, counter, errors, map)
var l = this;
if (counter < linkingList.length)
var linking = $('#lodCloud').children("div");
$.ajax(
url : "http://data.bibliotheken.nl/linkedResource",
method : 'POST',
timeout : 10000, // 5 sec.
data :
"IRI" : linkingList[counter]
,
beforeSend : function()
// console.debug(counter + " -- " + linkingList[counter])
,
success : function(data)
data = $(data);
var dest = $('

');
data.find('img:first').each(function()
dest.append("");
);
var title = (data.find('title').text() != 'null' ? data.find('title').text() : "");

if (data.find('img:first').length == 0 && data.find('longitude').text().replace(/null/, '') && data.find('latitude').text().replace(/null/, ''))
var id = new Date().getMilliseconds();
var map = $('');
dest.append(map);


l.setErrorImage(dest.find('img'));

var content = $("
");
content.append("
" + title + "");

var IRI = data.find('root').attr('about');
content.append("
" + IRI.replace(/([^a-zA-Z0-9])/g, '$1​') + "");
if ($.trim(data.find('description').text())) )$/, '');
content.append("
" + descr + "");

dest.append(content);

var tot = data.find('links').attr("tot");
if (parseInt(tot, 10) > 0)
dest.append("
" + tot + " " + (tot == 1 ? "connected resource" : "connected resources") + "")

dest.find('img').on('load', function()
linking.masonry();
).each(function()
if (this.complete)
$(this).load();

);
counter++;
if (!data.find('root').attr('error'))
linking.masonry().append(dest).masonry('appended', dest);
if (dest.find('map').length > 0)
l.drawMap(dest.find('map').attr("id"), data.find('latitude').text(), data.find('longitude').text(), title);

data.find('link').each(function()
var a = $(this).attr("href");
if ($.inArray(a, linkingList) == -1 && a != "http://data.bibliotheken.nl/id/thes/p070771308")
linkingList.push(a);

);
else
errors++;

linking.masonry();
l.grabSingleResource(linkingList, counter, errors, map);
l.updateCounter(linkingList.length, counter, errors);
,
error : function(e)
l.updateCounter(linkingList.length, (counter + 1), (errors + 1));
l.grabSingleResource(linkingList, (counter + 1), (errors + 1), map);
,
complete : function()

);
else
$('.connected').find('.lloading').fadeOut();

,
lMessage : function(msg, action)
var l = this;
var lp = $('#loadPanel');
if (action)
if (action == 'open')
if (isChrome)
// moving the panel to the center of the page
lp.addClass("cfix");

lp.fadeIn('fast');
else
lp.delay(2000).fadeOut('fast');


if (msg)
lp.queue(function()
setTimeout(function()
lp.find('.content').remove();
lp.find('#lmessage').append("" + msg + "");
lp.dequeue();
, action == 'open' ? 0 : 2000);
);

,
slideNext : function(obj)
var l = this;
obj.next().slideDown('fast', function()
l.slideNext($(this));
);
,
updateCounter : function(tot, count, errors)
var g = $('#lmessage > .content');
g.children('strong').html(count);
g.children('span:last').html(tot);
var b = $('#counterBlock');
b.find('p#grabDataTotal > strong').html(tot);
b.find('p#grabDataTotalLoaded > strong').html(count - errors);
b.find('p#grabDataTotalErrors > strong').html(errors);
,
footer : function()
$('#endpoint').find('.viewas').find('a').click(function()
var loc = document.location.href;
loc = loc.replace(/#[^#]+/, '');
if (loc.indexOf("?") != -1)
loc += "&output=" + $(this).attr("title");
else
loc += "?output=" + $(this).attr("title");

document.location = loc;
);
,
setErrorImage : function(obj)
obj.error(function()
$(this).attr("title", "image not available, broken URL?n" + $(this).attr("src"));
$(this).attr("src", "http://data.bibliotheken.nl/staticResources/img/no_image" + (isRetina ? "@2x" : "") + ".png");
$(this).addClass("errorImg");
$(this).unwrap("a");
);
,
rNavigator : function()
var l = this;
$('#navigator').find('.top').hover(function()
var e = $(this);
if (window.scrollY > 0)
e.addClass('hover');
var a = $('
');
a.click(function()
$('body').scrollTo(0, , function()
a.parent().trigger('mouseleave');
a.parent().trigger('mouseenter');
);
return false;
);
e.prepend(a);
e.prepend("to top");

, function()
$(this).removeClass('hover');
$(this).find('span , a').remove();
);
$('#navigator').find('.up').hover(function()
var y = window.scrollY;
var prev = null;
var e = $(this);
$.each(paginator, function(k, v)
if (v && v.position() && y > v.position().top)
prev = ;
prev[k] = v;

);
if (prev)
$.each(prev, function(k, v)
e.addClass('hover');
var a = $('
');
a.click(function()
$('body').scrollTo(v.position().top, , function()
a.parent().trigger('mouseleave');
a.parent().trigger('mouseenter');
);
return false;
);
e.prepend(a);
e.prepend('' + k + '');
);

, function()
$(this).removeClass('hover');
$(this).find('span , a').remove();
);
$('#navigator').find('.down').hover(function()
var y = window.scrollY + 1;
var next = null;
var e = $(this);
$.each(paginator, function(k, v)
if (!next && v && v.position() && y < v.position().top && y + window.innerHeight < $(document).height())
next = ;
next[k] = v;

);
if (next)
$.each(next, function(k, v)
e.addClass('hover');
var a = $('
');
a.click(function()
$('body').scrollTo(v.position().top, , function()
a.parent().trigger('mouseleave');
a.parent().trigger('mouseenter');
);
return false;
);
e.prepend(a);
e.prepend('' + k + '');
);

, function()
$(this).removeClass('hover');
$(this).find('span , a').remove();
);
$.fn.scrollTo = function(target, options, callback)
if (typeof options == 'function' && arguments.length == 2)
callback = options;
options = target;

var settings = $.extend(
scrollTarget : target,
offsetTop : 50,
duration : 200,
easing : 'swing'
, options);
return this.each(function()
var scrollPane = $(this);
var scrollTarget = (typeof settings.scrollTarget == "number") ? settings.scrollTarget : $(settings.scrollTarget);
var scrollY = (typeof scrollTarget == "number") ? scrollTarget : scrollTarget.offset().top + scrollPane.scrollTop() - parseInt(settings.offsetTop);
scrollPane.animate(
scrollTop : scrollY
, parseInt(settings.duration), settings.easing, function()
if (typeof callback == 'function')
callback.call(this);

);
);

// adding naturalWidth and naturalHeight to images
function img(url)
var i = new Image;
i.src = url;
return i;

var props = [ 'Width', 'Height' ], prop;
while (prop = props.pop())
(function(natural, prop)
$.fn[natural] = (natural in new Image()) ? function()
return this[0][natural];
: function()
var node = this[0], img, value;

if (node.tagName.toLowerCase() === 'img')
img = new Image();
img.src = node.src, value = img[prop];

return value;
;
('natural' + prop, prop.toLowerCase()));

,
setColumnsSize : function(secondTrip)
$('.c1').each(function()
var s = $(this).width();
if (secondTrip)
// occurs after web font rendering
s = s - 8;

if (s > col1)
col1 = s;

);
$('.c2').animate(
// 24 = main padding
marginLeft : col1 + 24,
marginTop : 0
, 'slow', 'swing', function()
$('.c2').css(
visibility : 'visible'
);
);
$('.c3').each(function()
var s = $(this).width();
if (s > col3)
col3 = s;

);
$('.c4').each(function()
var h = $(this).prev('.c3').height();
$(this).animate(
// 24 = main padding
marginLeft : col3 + 24,
marginTop : 0
, 'slow');
);


;


 




Popular posts from this blog

Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020