jQuery(document).ready(function($){

	var i=0;
	while (i<=10)
	{
		$("#myExtraContent"+i).appendTo("#extraContainer"+i);
		i=i+1;
	}

    $("area").click(function() {
        $('area[href^="http://"]').addClass('external').attr('target', '_blank');
    });

	$("a, input").bind('focus',function() { if(this.blur)this.blur(); });
    
    $('img[src$=.png]').addClass('pngfix');
    
    $('#news').innerfade({
				animationtype: 'slide',
				speed: 'slow',
				timeout: 5000,
				type: 'random',
				containerheight: '2em'
	});
    
    $.jGoogleAnalytics('UA-1578387-2');

});

$(window).load(function() {

	if (top!=self) top.location.href=self.location.href;

});