$(document).ready(function() {
	$('ul li a').not('#navigation li a').not('#box-container li a').hover(function() { 
		$(this).stop().animate({marginLeft: "4px"}, 300);
		}, function() { 
		$(this).stop().animate({marginLeft: "0px"}, 300);
	});
	
	$('#box-container li a img').hover(function() { 
		$(this).stop().fadeTo(300, 0.7);
		}, function() { 
		$(this).stop().fadeTo(300, 1.0);
	});
	
	$('#tabs').tabs({ fx: { opacity: 'toggle' } } );
});
