$(function(){
	
	//Zebra striping for main tables.
	$('#blogTable tr:nth-child(even)').addClass('oddRow');
	$('#mainBlogTable tr:nth-child(odd)').addClass('oddRow');
	$('#forum tr:nth-child(odd)').addClass('oddRow');
	$('#travelNews tr:nth-child(odd)').addClass('oddRow');
	$('#travelNews tr td img').css('display','block');
	$('#travelNews tr td a').attr('target','_blank');
	$('#tfcNews tr:nth-child(odd)').addClass('oddRow');
	$('#tfcNews tr td img').css('display','block');
	$('#tfcNews tr td a').attr('target','_blank');
	//Hover function for navigation
	$('#navigation li').each(function()
		{
			var current = this;
			this.onmouseover = function(event){
				$(this).css({'background-color':'#ffe999'});
			}
			
			this.onmouseout = function(event){
				$(this).css('background-color','#ffffff');
			}
		})
	
	//Hover function for Thumbnails
	$('table.photoTable tr td img').each(function()
		{
			var current = this;
			this.onmouseover = function(event){
				$(this).css({'border':'1px solid #ffe999'});
			}
			
			this.onmouseout = function(event){
				$(this).css('border','1px solid #000000');
			}
		})			
});


