/**
 * Resources Index - Resource articles treated as one unit
 *
 * Copyright 1999-2007 iMarc LLC
 *
 * @version 0.1.0
 *
 * @author  Craig Ruksznis [cr] <craigruk@imarc.net>
 *
 * @changes 0.1.0  Initial build [cr, 2007-12-27]
 *
 *----------------------------------------------------------------------------*/

/**
 * Functions to be loaded when the DOM is created
 */
$(function() {
	// Create hovers for the div
	$('div.resource_article').hover(
		function() {
			$(this).addClass('hover');
		},
		function() {
			$(this).removeClass('hover');
		}
	);

	// Inherit the href up to the divs from their child a's
	$('div.resource_article').click(
		function() {
			self.document.location = $(this).find('a').get(0).href;
	 	}
	);
	
});