// plsr. init JS
$(function() {
	$("img.thumb").lazyload({
	effect: "fadeIn"
	});
});

$(document).ready(function(){
	$("img.thumb").hover(function(){
	$(this).fadeTo("slow", 0.8);
	},function(){
	$(this).fadeTo("slow", 1.0);
	});
});	

// Superfish
$(document).ready(function(){ 
	$("ul.sf-menu").superfish(); 
}); 
