/* Author: Boxed Orange */

$(document).ready(function(){
	//Fade images on rollover
	$("img.normal").hover(
	function() {
		$(this).stop().animate({"opacity": "0"}, "fast");
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, "fast");
	});
});

















