// JavaScript Document
 $(document).ready(
					function()
					{
						 $("span.tag a").hover(
										function(){
													 $(this).parents("span").addClass("highlightTag");
												   },										   
										function(){
													 $(this).parents("span").removeClass("highlightTag");
												   }
												);
						 
						 $("p.commentCount a").hover(
										function(){
													 $(this).parents("div.feedback").addClass("feedbackHighlight");
												   },										   
										function(){
													 $(this).parents("div.feedback").removeClass("feedbackHighlight");
												   }
												);
						 
						  $("input#postBtn").hover(
										function(){
													
													 $(this).parents("p").removeClass("postBtnBG");
													  $(this).parents("p").addClass("postBtnHighlight");
												   },										   
										function(){
													 $(this).parents("p").removeClass("postBtnHighlight");
													  $(this).parents("p").addClass("postBtnBG");
												   }
												);
					}
		 
					);
