$(document).ready(function(){
	
	$('img[copyright]').load(function(){
		$this = $(this);
		$owner = $this.attr('copyright');
		$link = $this.attr('copy_url');
		$width = $this.width();
		$top = $this.height()-13;
		$('<a href='+$link+'></a>').addClass('img_cap').text($owner).insertBefore($this.parent());
	});
	var $ti = $('.main-title > h1');
	var $height = $ti.height();
	var $content = $('#content');
	var $nowtop = parseInt($content.css('top').replace("px",''));
	var $newtop = $nowtop+$height-49;
	if ($height > 49) $content.css({top:$newtop});
	
	jQuery.getFeed({
       url: 'http://e-citations.ethbib.ethz.ch/list/?cat=quick_filter&sort_order=1&sort_by=searchKeypub_9&op=AND&key-1=T_ALL&w1=03276&rows=10&pager_row=3&tpl=2',
       success: function(feed) {
           alert(feed.title);
       }
   });
   if ($('#wpadminbar').length>0) $('.main-title').css('top','28px');
});
