$(document).ready(function() {   

	//|
	//| INDEX PAGE
	//|
	
	// Functionality for the rotating banner
	$('ul#indexFlash').innerfade({    
 		speed: 'slow', 
 		type: 'random',
 		timeout: '2500',
 		containerheight: '250px'
	});  
	
	//|
	//| LISTINGS PAGE
	//|
	
	// Adds alternate row colors to the listing table
	$('table#listingsList tbody tr:even').addClass('even');

	// Mouseover, Mouseout, and Click handling for the listing table
	$('table#listingsList tr').mouseover(function(){
		$(this).addClass('over');
	}).mouseout(function(){
		$(this).removeClass('over');
	}).click(function(){
		var goto = $(this).attr('id');
		if (goto != 'heading')
			window.location = '/listings/' + goto;
	});
});
