var $j = jQuery.noConflict();
	
	$j(document).ready(function(){
	
	
	/* Definition List Event*/
	$j(".eventlistmod dd").click(function(){
		window.location=$(this).prev().find("a").attr("href"); return false;
	});

	$j('.eventlistmod dt').hover(function() {
		$j(this).next().addClass('hover').css({'cursor' : 'default'});
	}, function() {
		$j(this).next().removeClass('hover');
	});

	$j('.eventlistmod dd').hover(function() {
		$j(this).prev().addClass('hover').css({'cursor' : 'default'});
	}, function() {
		$j(this).prev().removeClass('hover');
	});
	
			
});
