jQuery(document).ready(function() {
	/* some default images */
	$('a.readmore').html('<img src="/css/junior2009/img/button_readmore.gif" alt="Read more" />');
	$('a.allphotos').html('<img src="/css/junior2009/img/button_allphotos.gif" alt="All photos" />');
	$('a.allvideos').html('<img src="/css/junior2009/img/button_allvideos.gif" alt="All videos" />');
	$('.title h2').wrapInner('<span class="text"></span>').prepend('<span class="color">&nbsp;</span>');
	$('.title h2 span.color').each(function() { $(this).height($(this).parent().height() + 16) })
	$('.b_NewsBlock_compact .more li:last').addClass('last');
	$('.content_list').append('<div style="clear: both">&nbsp;</div>');
});

/**
 * Hook into lytebox in order to track images
*/
(function() {
if (typeof(LyteBox) != "undefined") {
	var orig = LyteBox.prototype.changeContent;
	LyteBox.prototype.changeContent = function(imageNum) {

		orig.apply(this, arguments);
		if (!this.isLyteframe) {

			var src = (this.isSlideshow ? this.slideArray[this.activeSlide][0] : this.imageArray[this.activeImage][0]);
			pageTracker._trackPageview(src);

		}
	}
}
})();
