$(document).ready(function(){
	$(".pic").css({opacity:"0.5"});
	
    $(".thangs").hover(
      function () {
        $(this).children('.pic').animate({opacity:"1.0"}, 500);
      }, 
      function () {
         $(this).children('.pic').animate({opacity:"0.3"}, 500);
      }
    );



jQuery.fn.seqfx = function()
{
    $(this).fadeOut("fast").fadeIn(250, function()
    {
        $(this).next().seqfx();
    });
};


 $(".thangs:first").seqfx();
 
   $(".mouf:first").seqfx();
 
 
 

 });



