$(document).ready(function() {
		
	$('.obfuscated').defuscate();	
		
	$("#project_images img").lazyload({
		threshold : -50,
   		placeholder : "/images/site/loader.gif",
    	effect : "fadeIn", 
   	});
	
	
	$('.project_list li').hover(
		function() {
			$(this).addClass('hover');
		},
		function() {
			$(this).removeClass('hover');
		}
	);
	
	/*
	$('#site_work article').css('cursor', 'pointer').click(function() {
		window.location.href = $('a', this).attr('href');
	});
	*/		
});

