$(document).ready(function(){

	$('a[rel="shadowbox"]').each(function(){

		$(this).attr('rel', 'shadowbox[reel]');	

	});

	Shadowbox.init();

	$('.animation_object').hover(
		function() {
			$(this).find('.gold').css('color', '#ffee8b');
		},
		function() {
			$(this).find('.gold').css('color', '#FFDA00');
		}
	);

});
