﻿// JavaScript Document



$(document).ready(function(){
	$(".stripeMe tr:odd").addClass("alt");	
	
	$('.swapMouseover').preload({
		find: '_off',
		replace: '_on'
	});					
	
	$(".swapMouseover").hover(
	  function () {
		$(this).attr("src", $(this).attr("src").replace("_off", "_on"));
	  }, 
	  function () {
		$(this).attr("src", $(this).attr("src").replace("_on", "_off"));
	  }
	);   		


	$("#latestNewsList").cycle({ fx:'fade', speed: 100, delay: 10 });								

});

