$(document).ready(function() {

	$('.box').hover(
		function() {
			$(this).addClass('boxon');
		},
		function() {
			$(this).removeClass('boxon');
		}
	);

	$("a.example").fancybox();

	$("img.thumb").fadeTo("fast", 0.9); 

	$("img.thumb").hover(function(){		
			$(this).fadeTo("fast", 1.0); 
		},function(){   		
			$(this).fadeTo("fast", 0.9); 	

		});


});


