﻿$(document).ready(function () {
	if (typeof OneWeb.Admin === "undefined") { // do this when NOT logged in to OW
		$('.feedsource').cycle({
			fx: 'fade',
			speed: 'slow',
			timeout: 8000,
			next: '#feed_next',
			prev: '#feed_prev',
			slideExpr: 'p'
		});
		$(".marketing_item_txt").hover(
			function () {
				$(this).css({ "background-position": "-99999px -99999px", "background-repeat": "no-repeat" });
			},
			function () {
				$(this).css({ "background-position": "0 0", "background-repeat": "repeat-x" });
			}
		);

	} else { // do this when logged in to OW
		$("#marketing_homepg_body").removeClass("public");
	}
});
