$(document).ready(function() {
						   
//Thumbnail Fade 
  $('.thumbfade').each(function() {
    $(this).hover(function() {
       $(this).stop().animate({ opacity: 0.3 }, 300);
},
  function() {
     $(this).stop().animate({ opacity: 1.0 }, 700);
           });
        });


//Horizontal  Sliding
$(function(){

    $(".CollapsiblePanelContent a").hover(function(){
    	$(this).stop().animate({
    		paddingLeft: "15px"
    	}, 400);
    }, function() {
    	$(this).stop().animate({
    		paddingLeft: 0
    	}, 400);
    });

});
});
  
