/* Author: 
J.J. Li / FunnyQ
*/

$(document).ready(function(){

// picture hover change // 
	$("img.a").hover(
		function() {
			$(this).stop().animate({"opacity": "0"}, "slow");
		},
		function() {
			$(this).stop().animate({"opacity": "1"}, "slow");
		}
	);// End of PHC //
 
// Open external link in new window //
	$('a[rel="external"]').each(function(){

		$(this).attr('target', '_blank');

	});// End of OELINW //

});// End of JavaScript
