$( document ).ready( function()
{
	$( document ).pngFix(); 
	$('.scroll-pane').jScrollPane({dragMinHeight:10,dragMaxHeight :10});
	
	var index = 0;
	
	$( '.gallerypicture' ).click( show );
	
	if( $( '.gallerypicture' ).length > 1 )
	{
		$( '.gallerypicture' ).css( 'cursor', 'pointer' );
	}
	
	show();
	
	function show() {
		
		for( var i = 0; i < $( '.gallerypicture' ).length; i++ )
		{
			if( i != index )
			{
				$( '.gallerypicture' ).eq( i ).css( 'display', 'none' );
			}
			else
			{
				$( '.gallerypicture' ).eq( i ).css( 'display', 'block' );
			}
		}
		
		index++;
		
		if( index == $( '.gallerypicture' ).length )
		{
			index = 0;
		}
		
	}
	
});
