$(document).ready(function(){

	/* handle lists */
	$.each(["bullet","triangle"], function(idx,style) {
		$('ul.'+style+'>li').hover(
			function() { 
				$(this).addClass("active"); 
			}, 
			function() { 
				$(this).removeClass("active"); 
			}
		);
	});
	
	/* handle navi */
	$('a.bullet').hover(
		function() {
			$(this).children("img").first().attr("src", "/icons/bulletra.gif");
		},
		function() {
			$(this).children("img").first().attr("src", "/icons/bulletr.gif");
		}
	);

});
