// FadeIn Hybridixstudio

$(document).ready(function(){
						   $("#bk-gotop").fadeTo("slow", 0.9); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#bk-gotop").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.9); // This should set the opacity back to 30% on mouseout
						   });
						   });

$(document).ready(function(){
						   $(".fromtheblog ul li img").fadeTo("slow", 0.8); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".fromtheblog ul li img").hover(function(){
						   $(this).fadeTo("easing", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("easing", 0.8); // This should set the opacity back to 30% on mouseout
							   	});
						   });
