function init_anim( ) {
	$( '.anim-big[link="yes"]' ).css( 'cursor', 'pointer' );
	$( '.anim-big[link="yes"]' ).mouseover( function( ) {
		$( this ).fadeTo( 'fast', 0.6 );
	} );
	$( '.anim-big[link="yes"]' ).mouseout( function( ) {
		$( this ).fadeTo( 'fast', 1.0 );
	} );
	
	$( '.anim-big[link="yes"] .anim-event' ).css( 'color', '#D33A02' );
	$( '.anim-big[link="yes"]' ).click( function( ) {
		sub_animation( $( this ).attr( 'id' ) );
	} );
}

function sub_animation( id ) {
	loading( );
	
	$.get( 'ajax/animations.php', { 'id':id }, function( data ) {	
		$( '#content' ).html( data );
		
		$( 'a img' ).mouseover( function( ) {
			$( this ).fadeTo( 'fast', 0.6 );
		} );
		$( 'a img' ).mouseout( function( ) {
			$( this ).fadeTo( 'fast', 1.0 );
		} );
		
		init_anim( );
	} );
}
