//album navigations
$( document ).ready(
	function()
	{
		/*var navigationButtons = $( 'div.nxc_gallery div.middle_section div.next_album, div.nxc_gallery div.middle_section div.previous_album, div.nxc_gallery div.middle_section div.next_picture, div.nxc_gallery div.middle_section div.previous_picture' );
		var animateStatus = false;
		if( navigationButtons.length > 0 )
		{
			$( navigationButtons ).mouseenter(
				function( event )
				{
					if( !animateStatus )
					{
						animateStatus = true;
						$( this ).animate( { 'opacity': 1 }, 0, function(){ animateStatus = false; } );
					}
				}
			);
			$( navigationButtons ).mouseleave(
				function( event )
				{
					$( this ).animate( { 'opacity': 0.8 }, 0 );
				}
			);
		}*/
	}
);

//kernel
$( document ).ready(
	function()
	{
		var nxcGallery = new NXCGallery();
		nxcGallery.initialize();
	}
);
