/*SHADOWBOX*/	


	Shadowbox.init({
	    overlayColor: "#FFFFFF",
	    overlayOpacity: 0.7,
		animateFade: true,
	
	});

/*FULLSCREEN BACKGROUND*/

$(function(){
	$.fn.supersized.options = {  
		startwidth: 1920,  
		startheight: 1024,
		slideshow: 0,
		
	};
    $('#supersize').supersized(); 
});

/*TWITTER

$(document).ready(function(){
        $(".tweet").tweet({
            username: "masonbraun",
            join_text: "auto",
            avatar_size: 32,
            count: 3,
            auto_join_text_default: "",
            auto_join_text_ed: "",
            auto_join_text_ing: "",
            auto_join_text_reply: "",
            auto_join_text_url: "",
            loading_text: "loading tweets..."
        });
    }); */

/*LIST*/

$(document).ready(function(){
	$("#gallery li:nth-child(6n)").addClass("last")
	
	$("(#gallery ul li a").hover(function() {
	$(this).animate({ borderTopColor: "#c1c5b7", borderRightColor: "#c1c5b7", borderBottomColor: "#c1c5b7", borderLeftColor: "#c1c5b7"  }, 300);
	},function() {
	$(this).animate({ borderTopColor: "#524b53", borderRightColor: "#524b53", borderBottomColor: "#524b53", borderLeftColor: "#524b53" }, 600);
	});
	
});








