/**
  *	Pi Kappa Phi - Theta Mu Chapter
	*	University of Massachusetts Amherst
	*	Homepage Javascript functions
	*	Author: TJ Kelly, #016
	*	Info: http://www.tjkwebdesign.com
	*/

$(window).load(function(){

	//
	var $li=$('ul.dbem_events_list li');
	
	$li.live('mouseover',function(event){
		
		// hover effect
		$(this).addClass('hover');
		
		// get URL and redirect page
		var url = $(this).children('h3').children('a').attr('href');
		$(this).click(function(){
			document.location.href=(url);
		});
		
	});

	$li.live('mouseout',function(event){
	
		$(this).removeClass('hover');
	
	});
	
});

