jQuery.noConflict();
	jQuery(document).ready(function(){
		//Apply hover effect on clickable list items
		jQuery(".clickable-items li").hover(function() {
			jQuery(this).addClass("generic-hover"); //over
		}, function() {
			jQuery(this).removeClass("generic-hover"); //out			
		});
		
		//Make list items clickable, with parent containing class .clickable-items
		jQuery(".clickable-items li").click(function() {
			var the_url = jQuery(this).find("a:first").attr("href");
			if (the_url != null){
				location.href = the_url;
			}
		});
	});