/*****************************   anDeRan   ************************************/

var is_ie  = !!document.uniqueID;
var is_ie6 = is_ie && navigator.appVersion.match(/MSIE (5.5|6)/);

var preloadImgs = function () {
	var i = arguments.length;
	while (i-- > 0) {
		(new Image()).src = '/images/' + arguments[i];
	}
};

var initPagination = function () {
	var p = document.getElementById('content').getElementsByTagName('P');
	var i = p.length;
	while (i-- > 0) {
		if (p[i].className.indexOf('pages') != -1) {
			if (p[i].parentNode.className.indexOf('center-pages') != -1) {
				p[i].firstChild.style.marginLeft = (p[i].clientWidth - p[i].firstChild.clientWidth) / 2 + 'px';
				p[i].firstChild.style.visibility = 'visible';
			}
		}
	}
};

window.onload = function () {
	initPagination();
//	preloadImgs('menu/video_on.gif', 'menu/categories_on.gif', 'menu/publish_on.gif', 'menu/quikpod_on.gif', 'menu/home_on.gif');
};
