$(document).ready(function() { 

	$('.thumb').colorbox(); 
	$('.cthumb').colorbox(); 
	
    $(window).load(function() {
        $('#slider').nivoSlider();
    });
	
	$(".thumb").append("<span></span>"); 
    $(".thumb").hover(function(){ 
        $(this).children("span").fadeIn(100); 
    },function(){ 
        $(this).children("span").fadeOut(300); 
    }); 
	
	$('.winter, .summer, .travel').blend();
});

 
