(function(){

var api = {

	init: function()
	{
		if ($.browser.msie) {
			try {
				document.execCommand("BackgroundImageCache", false, true);
			} catch(err){};
		}

		if ($('#colright').length)
		{
			$('#colright').scrollFollow({ offset: 10 });
		}
	}
	
};


$(document).ready(api.init);

})();