
/*
//SET AN ONLOAD EVENT
jQuery(function($) {
	loadImageEvents();
});


function loadImageEvents() {
	$('div[id*=image_]').each(function() {
		
		//ADD HOVER EVENT TO IMAGE
		$(this).hover(function() {
			$('a[href=' + $(this).parent().attr('href') + ']').addClass('hover');
		}, function() {
			$('a[href=' + $(this).parent().attr('href') + ']').removeClass('hover');						
		});
		
		//ADD HOVER EVENT TO MENU LINK
		$('li a[href=' + $(this).parent().attr('href') + ']').hover(function() {
			$('a[href=' + $(this).attr('href') + '] div[id*=image_]').addClass('hover');
		}, function() {
			$('a[href=' + $(this).attr('href') + '] div[id*=image_]').removeClass('hover');						
		});
		
	});
}
*/