﻿jQuery(document).ready(function() {
	$("#thePosts li a .normal").hover(function(){
		$(this).fadeTo("fast", 0.0); // This should set the opacity to 100% on hover
	},function(){
		$(this).fadeTo("fast", 1.0); // This should set the opacity back to 0% on mouseout
	});
});
try{document.execCommand("BackgroundImageCache",false,true);}catch(err){}
$(function(){$('#thePosts').tabs({ fx: { opacity: 'toggle' } });});