MKG = {

	init: function() {
		this.externalLinks();
		this.startAnimation();
		try {
			document.execCommand('BackgroundImageCache', false, true);
		} catch(e) {}

	},
	
	externalLinks: function() {
		$('a[rel*=external]').click( function() {
			window.open(this.href);
			return false;
		});
	},

	startAnimation: function() {
		$('#textBackground').everyTime(56,function(i) {
			$(this).css( {backgroundPosition: "-" + i + "px 0"} )
		});
	}
	
};

$(document).ready(function() {
	MKG.init();
});
