﻿/// <reference path="jquery-1.4.4.js" />

/* ============================
DotControl copyright 2010
==============================*/


$(function () {
	//rotator
	$('.content-rotator').each(function () {
		$(this).jcarousel({
			animation: 700
		});
	});
});

function GetRandomImage(path) {
	$.get(path + 'RandomImage.ashx', function (data) {
		$('.random-image').attr('src', path + data).fadeIn(700);
	});
}

function domFix() {
	$('.Months .Recent').closest('.rpItem').hide();
}
