jQuery(function($){
	
	$("#navigation ul").each(function() {
		$(this).css({
			float: "none",
			width: $(this).width()
		});
	});
	$("#navigation a").hover(function() {
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	});
	
	$(".tweets").tweet({
        username: "digitalturf",
        avatar_size: 0,
        count: 3,
        auto_join_text_default: "we said,", 
        auto_join_text_ed: "we",
        auto_join_text_ing: "we were",
        auto_join_text_reply: "we replied to",
        auto_join_text_url: "we were checking out",
        loading_text: "loading tweets..."
    });
    


    
    $("#projects a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200
    });

	if($.browser.msie && $.browser.version.substr(0,1) == 6 ) { 
		DD_belatedPNG.fix('#home-content img, #home-slider .holder, #home-slider .featured img, .bubble-t, .bubble-m, .bubble-b');
	}
});
