$(document).ready(function(){
	var url = window.location.href;
	var album_thumbnails_url = new RegExp('^(.*/)thumbnails\.php\\?album=(\\d+).*');

	if (album_thumbnails_url.test(url))
	{
		var match_results = album_thumbnails_url.exec(url);
		var thisGalleryUrl = match_results[1]
		var aid = match_results[2]
		var mediaRSSUrl = 'index.php?file=mediarss/album_feed&aid='+aid;
		$('html head').append('<link rel="alternate" href="'+mediaRSSUrl+'" type="application/rss+xml" title="where?" />');

		if ($('#sortorder_cell'))
		{
			$('#sortorder_cell').prepend('<span class="sortorder_options"><a id="cooliris_link" href="#" title="Browse this album with cooliris">Cooliris</a>&nbsp;&nbsp;&nbsp;|&nbsp;</span>');
			$('#cooliris_link').attr('href', 'http://www.cooliris.com/tab/#cs=11&url='+escape(thisGalleryUrl+mediaRSSUrl));
		}
	}
});

