$(document).ready(function(){
 
	// Highlight Paragraphs
	$(".col-a .panel").hover(function(){
		$(this).addClass("highlight");
	},function(){
		$(this).removeClass("highlight");
	});
	
	$(".stripe li").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".stripe li:odd").addClass("even");
 
});