/*$(function() {
	// set opacity to nill on page load
	$("ul#work_list li a.fancybox").css("opacity","0");
	// on mouse over
	$("ul#work_list li a.fancybox").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, "slow");
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, "slow");
	});
});*/

$(document).ready(function() {
	$("a.fancybox").fancybox();
});

/*jQuery(document).ready(function($) {
	$("#twitter_update_list").tweet({
		username: "Daly85",
		count: 1,
		loading_text: "loading tweets..."
});*/
