function loadPicture( pid ){
			$.ajax({
				type: "POST",
				url: "/index.php?p=ajax&a=loadpict",
				data: 'pid=' + pid,
				success: function( html ){
					$( "#big_img_holder" ).html(  html );
				}
			});
		}

		var toggled = false;
		$(document).ready( function(){
			$(".padd_thumburi_gf .brd_gen_p").each( function( i,v ){
				$( v ).bind( 'click', function(){
					pid = this.id.split("_");
					loadPicture( pid[1] );
					return false;
				});
			});
			
			hVal = $(".all_holder").height();
			//alert( newH );
			 //= newH.substr( 0, newH.length-2 );
			
			if( hVal > 225 )
			{
				$("#expand").bind( 'click', function(){
					if( !toggled )
					{
						$( ".descriere_tara_h2" ).animate( { "height": hVal+'px' }, 300 );
						$("#expand").addClass( 'expand_off' );
						toggled = true;
					}
					else
					{
						$( ".descriere_tara_h2" ).animate( { "height": "225px" }, 300 );
						$("#expand").removeClass( 'expand_off' );
						toggled = false;
					}
				});
			}
			else
				$(".expand").remove();
		})